gx-go: init at 20160611

This commit is contained in:
zimbatm 2016-06-15 22:41:29 +01:00
parent e1a487fa8f
commit 996a2b54c4
3 changed files with 37 additions and 0 deletions

View File

@ -125,6 +125,15 @@
"sha256": "1klpdc4qkrfy31r7qh00fcz42blswzabmcnry9byd5adhszxj9bw"
}
},
{
"goPackagePath": "github.com/kr/fs",
"fetch": {
"type": "git",
"url": "https://github.com/kr/fs",
"rev": "2788f0dbd16903de03cb8186e5c7d97b69ad387b",
"sha256": "1c0fipl4rsh0v5liq1ska1dl83v3llab4k6lm8mvrx9c4dyp71ly"
}
},
{
"goPackagePath": "github.com/mitchellh/go-homedir",
"fetch": {

View File

@ -0,0 +1,27 @@
# This file was generated by go2nix.
{ stdenv, buildGoPackage, fetchgit
, gx
}:
buildGoPackage rec {
name = "gx-go-${version}";
version = "20160611-${stdenv.lib.strings.substring 0 7 rev}";
rev = "639fc0be1a153c59d8946904cceecf0b66ab2944";
goPackagePath = "github.com/whyrusleeping/gx-go";
src = fetchgit {
inherit rev;
url = "https://github.com/whyrusleeping/gx-go";
sha256 = "0qxp7gqrx1rhcbqvp4jdb3gj1dlj200bdc4gq8pfklc8fcz1lc6l";
};
goDeps = ../deps.json;
extraSrcs = [
{
goPackagePath = gx.goPackagePath;
src = gx.src;
}
];
}

View File

@ -1830,6 +1830,7 @@ in
};
gx = callPackage ../tools/package-management/gx { };
gx-go = callPackage ../tools/package-management/gx/go { };
sbsigntool = callPackage ../tools/security/sbsigntool { };