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

26 lines
612 B
Nix
Raw Normal View History

2016-06-13 00:14:42 +02:00
# This file was generated by go2nix.
{ lib, buildGoPackage, fetchFromGitHub }:
2016-06-13 00:14:42 +02:00
buildGoPackage rec {
pname = "gx";
2018-11-20 13:19:23 +01:00
version = "0.14.1";
2016-06-13 00:14:42 +02:00
goPackagePath = "github.com/whyrusleeping/gx";
src = fetchFromGitHub {
owner = "whyrusleeping";
repo = pname;
rev = "refs/tags/v${version}";
2018-11-20 13:19:23 +01:00
sha256 = "0pfx2p59xdbmqzfbgaf8xvlnzh8m05hkg596glq5kvl8ib65i4ha";
2016-06-13 00:14:42 +02:00
};
goDeps = ./deps.nix;
2016-06-19 14:44:37 +02:00
meta = with lib; {
2016-06-19 14:44:37 +02:00
description = "A packaging tool built around IPFS";
homepage = "https://github.com/whyrusleeping/gx";
2016-06-19 14:44:37 +02:00
license = licenses.mit;
maintainers = with maintainers; [ zimbatm ];
};
2016-06-13 00:14:42 +02:00
}