2016-06-12 22:14:42 +00:00
|
|
|
# This file was generated by go2nix.
|
2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2016-06-12 22:14:42 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "gx";
|
2018-11-20 12:19:23 +00:00
|
|
|
version = "0.14.1";
|
2016-06-12 22:14:42 +00:00
|
|
|
|
|
|
|
goPackagePath = "github.com/whyrusleeping/gx";
|
|
|
|
|
2020-11-01 22:39:49 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "whyrusleeping";
|
|
|
|
repo = pname;
|
|
|
|
rev = "refs/tags/v${version}";
|
2018-11-20 12:19:23 +00:00
|
|
|
sha256 = "0pfx2p59xdbmqzfbgaf8xvlnzh8m05hkg596glq5kvl8ib65i4ha";
|
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
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-06-19 12:44:37 +00:00
|
|
|
description = "A packaging tool built around IPFS";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/whyrusleeping/gx";
|
2016-06-19 12:44:37 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ zimbatm ];
|
|
|
|
};
|
2016-06-12 22:14:42 +00:00
|
|
|
}
|