gomod2nix/default.nix

18 lines
395 B
Nix
Raw Normal View History

{ buildGoApplication, lib, makeWrapper, nix-prefetch-git }:
2020-07-23 09:34:26 +00:00
buildGoApplication {
2020-07-23 09:34:26 +00:00
pname = "gomod2nix";
version = "0.1";
src = lib.cleanSource ./.;
modules = ./gomod2nix.toml;
2020-07-24 09:37:14 +00:00
subPackages = [ "." ];
nativeBuildInputs = [ makeWrapper ];
2020-07-24 09:37:14 +00:00
postInstall = ''
wrapProgram $out/bin/gomod2nix --prefix PATH : ${lib.makeBinPath [ nix-prefetch-git ]}
2020-07-24 09:37:14 +00:00
rm -f $out/bin/builder
'';
2020-07-23 09:34:26 +00:00
}