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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
740 B
Nix
Raw Normal View History

2022-06-11 23:40:42 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
, makeWrapper
, go
}:
2016-06-03 17:19:32 +00:00
2022-06-11 23:40:42 +00:00
buildGoModule rec {
pname = "gox";
2020-04-25 10:32:24 +00:00
version = "1.0.1";
2016-06-03 17:19:32 +00:00
2017-12-04 08:12:40 +00:00
src = fetchFromGitHub {
owner = "mitchellh";
repo = "gox";
2020-04-25 10:32:24 +00:00
rev = "v${version}";
sha256 = "0mkh81hd7kn45dz7b6yhzqsg2mvg1g6pwx89jjigxrnqhyg9vrl7";
2016-06-03 17:19:32 +00:00
};
2022-06-11 23:40:42 +00:00
vendorSha256 = null;
# This is required for wrapProgram.
allowGoReference = true;
nativeBuildInputs = [ makeWrapper ];
postFixup = ''
wrapProgram $out/bin/gox --prefix PATH : ${lib.makeBinPath [ go ]}
'';
meta = with lib; {
homepage = "https://github.com/mitchellh/gox";
2017-12-04 08:12:40 +00:00
description = "A dead simple, no frills Go cross compile tool";
license = licenses.mpl20;
2022-06-11 23:40:42 +00:00
maintainers = with maintainers; [ azahi ];
2017-12-04 08:12:40 +00:00
};
2016-06-03 17:19:32 +00:00
}