2022-06-12 00:40:42 +01:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, makeWrapper
|
|
|
|
, go
|
|
|
|
}:
|
2016-06-03 18:19:32 +01:00
|
|
|
|
2022-06-12 00:40:42 +01:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gox";
|
2020-04-25 11:32:24 +01:00
|
|
|
version = "1.0.1";
|
2016-06-03 18:19:32 +01:00
|
|
|
|
2017-12-04 08:12:40 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mitchellh";
|
|
|
|
repo = "gox";
|
2020-04-25 11:32:24 +01:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0mkh81hd7kn45dz7b6yhzqsg2mvg1g6pwx89jjigxrnqhyg9vrl7";
|
2016-06-03 18:19:32 +01:00
|
|
|
};
|
|
|
|
|
2023-09-21 18:11:11 +01:00
|
|
|
vendorHash = null;
|
2022-06-12 00:40:42 +01:00
|
|
|
|
|
|
|
# This is required for wrapProgram.
|
|
|
|
allowGoReference = true;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
wrapProgram $out/bin/gox --prefix PATH : ${lib.makeBinPath [ go ]}
|
|
|
|
'';
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/mitchellh/gox";
|
2017-12-04 08:12:40 +00:00
|
|
|
description = "Dead simple, no frills Go cross compile tool";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "gox";
|
2017-12-04 08:12:40 +00:00
|
|
|
license = licenses.mpl20;
|
2022-06-12 00:40:42 +01:00
|
|
|
maintainers = with maintainers; [ azahi ];
|
2017-12-04 08:12:40 +00:00
|
|
|
};
|
2016-06-03 18:19:32 +01:00
|
|
|
}
|