Also explicitly disable Cgo, as that is necessary for newer versions of Go. Change-Id: I24af36efbe5e2e4b873553c11798bbfa6a6a6964
8 lines
163 B
Nix
8 lines
163 B
Nix
with import <nixpkgs> { overlays = [ (import ./aux/overlay.nix) ]; };
|
|
|
|
pkgs.symlinkJoin {
|
|
name = "zilch-bin";
|
|
paths = [
|
|
(pkgs.callPackage ./cli {})
|
|
];
|
|
}
|