Port gox to buildGoPackage
This commit is contained in:
parent
df097fe2c3
commit
a594f0bcd5
|
@ -1,49 +1,19 @@
|
||||||
{ stdenv, lib, go_1_3, fetchFromGitHub }:
|
{ lib, goPackages, fetchFromGitHub }:
|
||||||
|
|
||||||
let
|
with goPackages;
|
||||||
goDeps = [
|
|
||||||
{
|
buildGoPackage rec {
|
||||||
root = "github.com/mitchellh/gox";
|
rev = "c7329055e2aeb253a947e5cc876586ff4ca19199";
|
||||||
src = fetchFromGitHub {
|
name = "gox-${lib.strings.substring 0 7 rev}";
|
||||||
owner = "mitchellh";
|
goPackagePath = "github.com/mitchellh/gox";
|
||||||
repo = "gox";
|
src = fetchFromGitHub {
|
||||||
rev = "c7329055e2aeb253a947e5cc876586ff4ca19199";
|
inherit rev;
|
||||||
sha256 = "0zhb88jjxqn3sdc4bpzvajqvgi9igp5gk03q12gaksaxhy2wl4jy";
|
owner = "mitchellh";
|
||||||
};
|
repo = "gox";
|
||||||
}
|
sha256 = "0zhb88jjxqn3sdc4bpzvajqvgi9igp5gk03q12gaksaxhy2wl4jy";
|
||||||
{
|
|
||||||
root = "github.com/mitchellh/iochan";
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "mitchellh";
|
|
||||||
repo = "iochan";
|
|
||||||
rev = "b584a329b193e206025682ae6c10cdbe03b0cd77";
|
|
||||||
sha256 = "1fcwdhfci41ibpng2j4c1bqfng578cwzb3c00yw1lnbwwhaq9r6b";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
];
|
|
||||||
sources = stdenv.mkDerivation rec {
|
|
||||||
name = "go-deps";
|
|
||||||
buildCommand =
|
|
||||||
lib.concatStrings
|
|
||||||
(map (dep: ''
|
|
||||||
mkdir -p $out/src/`dirname ${dep.root}`
|
|
||||||
ln -s ${dep.src} $out/src/${dep.root}
|
|
||||||
'') goDeps);
|
|
||||||
};
|
};
|
||||||
in
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
buildInputs = [ iochan ];
|
||||||
name = "gox";
|
|
||||||
|
|
||||||
src = sources;
|
|
||||||
|
|
||||||
propagatedBuildInputs = [ go_1_3 ];
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
mkdir -p $out/bin
|
|
||||||
export GOPATH=$src
|
|
||||||
go build -v -o $out/bin/gox github.com/mitchellh/gox
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A simple, no-frills tool for Go cross compilation that behaves a lot like standard go build";
|
description = "A simple, no-frills tool for Go cross compilation that behaves a lot like standard go build";
|
||||||
|
|
|
@ -216,6 +216,18 @@ let self = _self // overrides; _self = with self; {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
iochan = buildGoPackage rec {
|
||||||
|
rev = "b584a329b193e206025682ae6c10cdbe03b0cd77";
|
||||||
|
name = "iochan-${stdenv.lib.strings.substring 0 7 rev}";
|
||||||
|
goPackagePath = "github.com/mitchellh/iochan";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
inherit rev;
|
||||||
|
owner = "mitchellh";
|
||||||
|
repo = "iochan";
|
||||||
|
sha256 = "1fcwdhfci41ibpng2j4c1bqfng578cwzb3c00yw1lnbwwhaq9r6b";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
log4go = buildGoPackage rec {
|
log4go = buildGoPackage rec {
|
||||||
rev = "48";
|
rev = "48";
|
||||||
name = "log4go-${rev}";
|
name = "log4go-${rev}";
|
||||||
|
|
Loading…
Reference in New Issue