mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
38 lines
817 B
Nix
38 lines
817 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "transifex-cli";
|
|
version = "1.6.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "transifex";
|
|
repo = "cli";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-76nmlZFLon9EquM7tQ/PReM1rxkzh7x1rNdaP3n4KKg=";
|
|
};
|
|
|
|
vendorHash = "sha256-rcimaHr3fFeHSjZXw1w23cKISCT+9t8SgtPnY/uYGAU=";
|
|
|
|
ldflags = [
|
|
"-s" "-w" "-X 'github.com/transifex/cli/internal/txlib.Version=${version}'"
|
|
];
|
|
|
|
postInstall = ''
|
|
mv $out/bin/cli $out/bin/tx
|
|
'';
|
|
|
|
# Tests contain network calls
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "The Transifex command-line client";
|
|
homepage = "https://github.com/transifex/transifex-cli";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ thornycrackers ];
|
|
mainProgram = "tx";
|
|
};
|
|
}
|