nixpkgs/pkgs/applications/misc/transifex-cli/default.nix

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

38 lines
817 B
Nix
Raw Permalink Normal View History

2023-04-09 17:32:36 +02:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "transifex-cli";
2024-04-25 16:55:19 +02:00
version = "1.6.11";
2023-04-09 17:32:36 +02:00
src = fetchFromGitHub {
owner = "transifex";
repo = "cli";
rev = "v${version}";
2024-04-25 16:55:19 +02:00
sha256 = "sha256-1p7Si1av/8fhtqfAsgQoqes+u1RlhZI0AhGrTSuLDrI=";
2023-04-09 17:32:36 +02:00
};
2023-07-30 21:14:54 +02:00
vendorHash = "sha256-rcimaHr3fFeHSjZXw1w23cKISCT+9t8SgtPnY/uYGAU=";
2023-04-09 17:32:36 +02:00
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 ];
2024-02-11 03:19:15 +01:00
mainProgram = "tx";
2023-04-09 17:32:36 +02:00
};
}