2c931312ce
+ use fetchFromGithub where possible
35 lines
735 B
Nix
35 lines
735 B
Nix
# This file was generated by go2nix.
|
|
{ stdenv, buildGoPackage, fetchFromGitHub
|
|
, gx
|
|
}:
|
|
|
|
buildGoPackage rec {
|
|
pname = "gx-go";
|
|
version = "1.9.0";
|
|
|
|
goPackagePath = "github.com/whyrusleeping/gx-go";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "whyrusleeping";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "0fdy4b3ymqw6hzvvjwq37mfrdmizc8lxm53axw93n3x6118na9jc";
|
|
};
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
extraSrcs = [
|
|
{
|
|
goPackagePath = gx.goPackagePath;
|
|
src = gx.src;
|
|
}
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A tool for importing go packages into gx";
|
|
homepage = "https://github.com/whyrusleeping/gx-go";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ zimbatm ];
|
|
};
|
|
}
|