tvl-depot/third_party/naersk.nix
Vincent Ambo 01bad09eed refactor: Introduce new layout with nixpkgs in third_party
This is not the final layout yet, but makes it so that my top-level
attribute set is no longer overlaid into nixpkgs itself.

This is useful for other people who are importing my monorepo.
2019-12-09 02:40:48 +00:00

9 lines
283 B
Nix

{ pkgs, ... }:
let inherit (pkgs.third_party.nixpkgs) callPackage fetchFromGitHub;
in callPackage (fetchFromGitHub {
owner = "nmattia";
repo = "naersk";
rev = "68c1c2b2b661913cdc5ecabea518dfdc4f449027";
sha256 = "1ll310pl44kdbwfslzwvg2v7khf1y0xkg2j5wcfia4k7sj6bcl28";
}) {}