2016-06-15 14:41:29 -07:00
|
|
|
# This file was generated by go2nix.
|
|
|
|
{ stdenv, buildGoPackage, fetchgit
|
|
|
|
, gx
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "gx-go-${version}";
|
2017-07-07 08:17:21 -07:00
|
|
|
version = "1.5.0";
|
|
|
|
rev = "refs/tags/v${version}";
|
2016-06-15 14:41:29 -07:00
|
|
|
|
|
|
|
goPackagePath = "github.com/whyrusleeping/gx-go";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
inherit rev;
|
|
|
|
url = "https://github.com/whyrusleeping/gx-go";
|
2017-07-07 08:17:21 -07:00
|
|
|
sha256 = "0bg4h5lzs293qmlsr9n257vjpr5w6bxb4ampb25gsn3fgy3rvsis";
|
2016-06-15 14:41:29 -07:00
|
|
|
};
|
|
|
|
|
2016-09-10 03:04:13 -07:00
|
|
|
goDeps = ../deps.nix;
|
2016-06-15 14:41:29 -07:00
|
|
|
|
|
|
|
extraSrcs = [
|
|
|
|
{
|
|
|
|
goPackagePath = gx.goPackagePath;
|
|
|
|
src = gx.src;
|
|
|
|
}
|
|
|
|
];
|
2016-06-19 05:44:37 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A tool for importing go packages into gx";
|
|
|
|
homepage = https://github.com/whyrusleeping/gx-go;
|
|
|
|
license = licenses.mit;
|
2017-04-28 21:24:34 -07:00
|
|
|
maintainers = with maintainers; [ zimbatm ];
|
2016-06-19 05:44:37 -07:00
|
|
|
};
|
2016-06-15 14:41:29 -07:00
|
|
|
}
|