cmd/build/default.nix (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | { pkgs ? ( let inherit (builtins) fetchTree fromJSON readFile; inherit ((fromJSON (readFile ../../flake.lock)).nodes) nixpkgs gomod2nix; in import (fetchTree nixpkgs.locked) { overlays = [ (import "${fetchTree gomod2nix.locked}/overlay.nix") ]; } ) , buildGoApplication ? pkgs.buildGoApplication , makeWrapper ? pkgs.makeWrapper }: buildGoApplication { pname = "build"; version = "0.1"; pwd = ../..; src = ../..; modules = ../../gomod2nix.toml; subPackages = [ "cmd/build" ]; nativeBuildInputs = [ makeWrapper ]; postInstall = '' wrapProgram $out/bin/build --set KO_DATA_PATH ${../../templates} ''; } |