2016-06-12 22:14:42 +00:00
|
|
|
# This file was generated by go2nix.
|
2017-07-07 15:17:21 +00:00
|
|
|
{ stdenv, buildGoPackage, fetchgit }:
|
2016-06-12 22:14:42 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "gx-${version}";
|
2017-07-07 15:17:21 +00:00
|
|
|
version = "0.12.0";
|
|
|
|
rev = "refs/tags/v${version}";
|
2016-06-12 22:14:42 +00:00
|
|
|
|
|
|
|
goPackagePath = "github.com/whyrusleeping/gx";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
inherit rev;
|
|
|
|
url = "https://github.com/whyrusleeping/gx";
|
2017-07-07 15:17:21 +00:00
|
|
|
sha256 = "0pvf0j14xnzy01fxilja8xbki0i0g7h7y20jzw74ds5a7ywsdx8r";
|
2016-06-12 22:14:42 +00:00
|
|
|
};
|
|
|
|
|
2016-09-10 10:04:13 +00:00
|
|
|
goDeps = ./deps.nix;
|
2016-06-19 12:44:37 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A packaging tool built around IPFS";
|
|
|
|
homepage = https://github.com/whyrusleeping/gx;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ zimbatm ];
|
|
|
|
};
|
2016-06-12 22:14:42 +00:00
|
|
|
}
|