bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
37 lines
813 B
Nix
37 lines
813 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "transifex-cli";
|
|
version = "1.6.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "transifex";
|
|
repo = "cli";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-SVXrrpkz2veA1L5p88iGQxHAUtySiYge0ffY2HyVCr0=";
|
|
};
|
|
|
|
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 = "Transifex command-line client";
|
|
homepage = "https://github.com/transifex/transifex-cli";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ thornycrackers ];
|
|
mainProgram = "tx";
|
|
};
|
|
}
|