nixpkgs/pkgs/development/tools/go2nix/default.nix

46 lines
1 KiB
Nix
Raw Normal View History

{ lib, buildGoPackage, go-bindata, gotools, nix-prefetch-git, git, makeWrapper,
2016-06-09 22:10:40 +00:00
fetchFromGitHub }:
2016-06-05 14:41:51 +00:00
buildGoPackage rec {
pname = "go2nix";
2018-10-19 14:10:18 +00:00
version = "1.3.0";
2016-06-09 22:10:40 +00:00
rev = "v${version}";
2016-06-05 14:41:51 +00:00
goPackagePath = "github.com/kamilchm/go2nix";
2016-06-09 22:10:40 +00:00
src = fetchFromGitHub {
2016-06-05 14:41:51 +00:00
inherit rev;
2016-06-09 22:10:40 +00:00
owner = "kamilchm";
repo = "go2nix";
2018-10-19 14:10:18 +00:00
sha256 = "1q61mgngvyl2bnmrqahh3bji402n76c7xwv29lwk007gymzgff0n";
2016-06-05 14:41:51 +00:00
};
goDeps = ./deps.nix;
2016-06-05 14:41:51 +00:00
outputs = [ "out" "man" ];
2017-03-15 15:08:50 +00:00
nativeBuildInputs = [ go-bindata gotools makeWrapper ];
preBuild = "go generate ./...";
2016-06-05 14:41:51 +00:00
postInstall = ''
wrapProgram $out/bin/go2nix \
2016-06-05 14:41:51 +00:00
--prefix PATH : ${nix-prefetch-git}/bin \
--prefix PATH : ${git}/bin
2017-03-15 15:08:50 +00:00
mkdir -p $man/share/man/man1
cp $src/go2nix.1 $man/share/man/man1
2016-06-05 14:41:51 +00:00
'';
allowGoReference = true;
2016-09-27 02:25:45 +00:00
doCheck = false; # tries to access the net
meta = with lib; {
2016-09-27 02:25:45 +00:00
description = "Go apps packaging for Nix";
homepage = "https://github.com/kamilchm/go2nix";
2016-09-27 02:25:45 +00:00
license = licenses.mit;
maintainers = with maintainers; [ kamilchm ];
};
2016-06-05 14:41:51 +00:00
}