summary refs log tree commit diff
path: root/pkgs/tools/package-management/gx/default.nix
blob: 524dc01cbe72b0b59a2605d29c0176eab6d9637c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# 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 ];
  };
}