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

22 lines
496 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchFromGitHub }:
2016-06-03 20:19:32 +03:00
2020-04-25 13:32:24 +03:00
buildGoPackage rec {
pname = "gox";
2020-04-25 13:32:24 +03:00
version = "1.0.1";
2016-06-03 20:19:32 +03:00
goPackagePath = "github.com/mitchellh/gox";
2017-12-04 11:12:40 +03:00
src = fetchFromGitHub {
owner = "mitchellh";
repo = "gox";
2020-04-25 13:32:24 +03:00
rev = "v${version}";
sha256 = "0mkh81hd7kn45dz7b6yhzqsg2mvg1g6pwx89jjigxrnqhyg9vrl7";
2016-06-03 20:19:32 +03:00
};
meta = with lib; {
homepage = "https://github.com/mitchellh/gox";
2017-12-04 11:12:40 +03:00
description = "A dead simple, no frills Go cross compile tool";
license = licenses.mpl20;
};
2016-06-03 20:19:32 +03:00
}