nixpkgs/pkgs/tools/package-management/gx/default.nix
2017-07-07 08:17:21 -07:00

26 lines
633 B
Nix

# This file was generated by go2nix.
{ stdenv, buildGoPackage, fetchgit }:
buildGoPackage rec {
name = "gx-${version}";
version = "0.12.0";
rev = "refs/tags/v${version}";
goPackagePath = "github.com/whyrusleeping/gx";
src = fetchgit {
inherit rev;
url = "https://github.com/whyrusleeping/gx";
sha256 = "0pvf0j14xnzy01fxilja8xbki0i0g7h7y20jzw74ds5a7ywsdx8r";
};
goDeps = ./deps.nix;
meta = with stdenv.lib; {
description = "A packaging tool built around IPFS";
homepage = https://github.com/whyrusleeping/gx;
license = licenses.mit;
maintainers = with maintainers; [ zimbatm ];
};
}