nixpkgs/pkgs/development/tools/gox/default.nix

26 lines
602 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub }:
2016-06-03 17:19:32 +00:00
buildGoPackage rec {
name = "gox-${version}";
version = "20181025";
2016-06-03 17:19:32 +00:00
goPackagePath = "github.com/mitchellh/gox";
2017-12-04 08:12:40 +00:00
src = fetchFromGitHub {
owner = "mitchellh";
repo = "gox";
rev = "9cc487598128d0963ff9dcc51176e722788ec645";
sha256 = "18indkdwq2m1wy95d71lgbf46jxxrfc5km1fys5laapz993h77v6";
2016-06-03 17:19:32 +00:00
};
goDeps = ./deps.nix;
2017-12-04 08:12:40 +00: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 17:19:32 +00:00
}