2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
2016-06-03 19:19:32 +02:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "gox-${version}";
|
2017-12-04 09:12:40 +01:00
|
|
|
version = "0.4.0";
|
2016-06-03 19:19:32 +02:00
|
|
|
|
|
|
|
goPackagePath = "github.com/mitchellh/gox";
|
|
|
|
|
2017-12-04 09:12:40 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mitchellh";
|
|
|
|
repo = "gox";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r";
|
2016-06-03 19:19:32 +02:00
|
|
|
};
|
|
|
|
|
2016-09-10 12:04:13 +02:00
|
|
|
goDeps = ./deps.nix;
|
2017-12-04 09:12:40 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/mitchellh/gox;
|
|
|
|
description = "A dead simple, no frills Go cross compile tool";
|
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.mpl20;
|
|
|
|
};
|
|
|
|
|
2016-06-03 19:19:32 +02:00
|
|
|
}
|