2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
2016-06-03 19:19:32 +02:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "gox-${version}";
|
2018-12-05 14:50:54 +01:00
|
|
|
version = "20181025";
|
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";
|
2018-12-05 14:50:54 +01:00
|
|
|
rev = "9cc487598128d0963ff9dcc51176e722788ec645";
|
|
|
|
sha256 = "18indkdwq2m1wy95d71lgbf46jxxrfc5km1fys5laapz993h77v6";
|
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
|
|
|
}
|