nixpkgs/pkgs/development/tools/gox/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

38 lines
761 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
, makeWrapper
, go
}:
buildGoModule rec {
pname = "gox";
version = "1.0.1";
src = fetchFromGitHub {
owner = "mitchellh";
repo = "gox";
rev = "v${version}";
sha256 = "0mkh81hd7kn45dz7b6yhzqsg2mvg1g6pwx89jjigxrnqhyg9vrl7";
};
vendorHash = 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";
description = "Dead simple, no frills Go cross compile tool";
mainProgram = "gox";
license = licenses.mpl20;
maintainers = with maintainers; [ azahi ];
};
}