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

26 lines
575 B
Nix
Raw Normal View History

2017-12-04 08:12:40 +00:00
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
2016-06-03 17:19:32 +00:00
buildGoPackage rec {
name = "gox-${version}";
2017-12-04 08:12:40 +00:00
version = "0.4.0";
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 = "v${version}";
sha256 = "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r";
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
}