nixpkgs/pkgs/tools/package-management/gx/go/default.nix

35 lines
749 B
Nix
Raw Normal View History

2016-06-15 22:41:29 +01:00
# This file was generated by go2nix.
{ stdenv, buildGoPackage, fetchgit
, gx
}:
buildGoPackage rec {
name = "gx-go-${version}";
2018-11-20 12:19:50 +00:00
version = "1.9.0";
2017-07-07 16:17:21 +01:00
rev = "refs/tags/v${version}";
2016-06-15 22:41:29 +01:00
goPackagePath = "github.com/whyrusleeping/gx-go";
src = fetchgit {
inherit rev;
url = "https://github.com/whyrusleeping/gx-go";
2018-11-20 12:19:50 +00:00
sha256 = "0fdy4b3ymqw6hzvvjwq37mfrdmizc8lxm53axw93n3x6118na9jc";
2016-06-15 22:41:29 +01:00
};
2018-11-20 12:19:50 +00:00
goDeps = ./deps.nix;
2016-06-15 22:41:29 +01:00
extraSrcs = [
{
goPackagePath = gx.goPackagePath;
src = gx.src;
}
];
2016-06-19 13:44:37 +01:00
meta = with stdenv.lib; {
description = "A tool for importing go packages into gx";
homepage = https://github.com/whyrusleeping/gx-go;
license = licenses.mit;
maintainers = with maintainers; [ zimbatm ];
2016-06-19 13:44:37 +01:00
};
2016-06-15 22:41:29 +01:00
}