nixpkgs-suyu/pkgs/tools/text/crowdin-cli/default.nix

51 lines
1.1 KiB
Nix
Raw Normal View History

2021-08-08 20:31:30 +02:00
{ lib
, stdenv
, fetchurl
, gawk
, git
, gnugrep
, installShellFiles
, jre
, makeWrapper
, crowdin-cli
, testVersion
2021-08-08 20:31:30 +02:00
, unzip
}:
stdenv.mkDerivation rec {
pname = "crowdin-cli";
2021-12-06 13:12:52 +01:00
version = "3.7.2";
2021-08-08 20:31:30 +02:00
src = fetchurl {
url = "https://github.com/crowdin/${pname}/releases/download/${version}/${pname}.zip";
2021-12-06 13:12:52 +01:00
sha256 = "sha256-7p+Di4GcztwzybJTcFXlun15NFYbJN8eGmJ0y9bify0=";
2021-08-08 20:31:30 +02:00
};
nativeBuildInputs = [ installShellFiles makeWrapper unzip ];
installPhase = ''
runHook preInstall
install -D crowdin-cli.jar $out/lib/crowdin-cli.jar
installShellCompletion --cmd crowdin --bash ./crowdin_completion
makeWrapper ${jre}/bin/java $out/bin/crowdin \
--argv0 crowdin \
--add-flags "-jar $out/lib/crowdin-cli.jar" \
--prefix PATH : ${lib.makeBinPath [ gawk gnugrep git ]}
runHook postInstall
'';
passthru.tests.version = testVersion { package = crowdin-cli; };
2021-08-08 20:31:30 +02:00
meta = with lib; {
mainProgram = "crowdin";
2021-08-08 20:31:30 +02:00
homepage = "https://github.com/crowdin/crowdin-cli/";
description = "A command-line client for the Crowdin API";
license = licenses.mit;
maintainers = with maintainers; [ DamienCassou ];
};
}