biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / crowdin-cli / default.nix
blob14f33ae0c518f0a957d212d73d0d7b1a0551374e
1 { lib
2 , stdenv
3 , fetchurl
4 , gawk
5 , git
6 , gnugrep
7 , installShellFiles
8 , jre
9 , makeWrapper
10 , testers
11 , unzip
14 stdenv.mkDerivation (finalAttrs: {
15   pname = "crowdin-cli";
16   version = "4.2.0";
18   src = fetchurl {
19     url = "https://github.com/crowdin/crowdin-cli/releases/download/${finalAttrs.version}/crowdin-cli.zip";
20     hash = "sha256-158zbgYw4FP/vQVsSs9tt9VcisBWpRn/D4ORiM24PYY=";
21   };
23   nativeBuildInputs = [ installShellFiles makeWrapper unzip ];
25   installPhase = ''
26     runHook preInstall
28     install -D crowdin-cli.jar $out/lib/crowdin-cli.jar
30     installShellCompletion --cmd crowdin --bash ./crowdin_completion
32     makeWrapper ${jre}/bin/java $out/bin/crowdin \
33       --argv0 crowdin \
34       --add-flags "-jar $out/lib/crowdin-cli.jar" \
35       --prefix PATH : ${lib.makeBinPath [ gawk gnugrep git ]}
37     runHook postInstall
38   '';
40   passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; };
42   meta = with lib; {
43     mainProgram = "crowdin";
44     homepage = "https://github.com/crowdin/crowdin-cli/";
45     description = "Command-line client for the Crowdin API";
46     sourceProvenance = with sourceTypes; [ binaryBytecode ];
47     license = licenses.mit;
48     maintainers = with maintainers; [ DamienCassou ];
49   };