Commit 9bc44ccf authored by Cody Hiar's avatar Cody Hiar
Browse files

transifex-cli: init at 1.6.7

parent fc46a9d1
Loading
Loading
Loading
Loading
+36 −0
Original line number Diff line number Diff line
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "transifex-cli";
  version = "1.6.7";

  src = fetchFromGitHub {
    owner = "transifex";
    repo = "cli";
    rev = "v${version}";
    sha256 = "sha256-5166P44HSRKQ0pCh1BCPd1ZUryh/IBDumcnLYA+CSBY=";
  };

  vendorSha256 = "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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -12979,6 +12979,8 @@ with pkgs;
  transifex-client = python39.pkgs.callPackage ../tools/text/transifex-client { };
  transifex-cli = callPackage ../applications/misc/transifex-cli { };
  translate-shell = callPackage ../applications/misc/translate-shell { };
  translatepy = with python3.pkgs; toPythonApplication translatepy;