3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/office/atlassian-cli/default.nix

49 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchzip, jre }:
stdenv.mkDerivation rec {
pname = "atlassian-cli";
2021-01-19 02:54:06 +00:00
version = "9.5.0";
2020-10-21 19:48:39 +01:00
2018-04-20 16:20:45 +01:00
src = fetchzip {
url = "https://bobswift.atlassian.net/wiki/download/attachments/16285777/${pname}-${version}-distribution.zip";
2021-01-19 02:54:06 +00:00
sha256 = "sha256-EAoydA2lg4K1gTgzn9patNw7pcCdU/OPfaEG1OfEJ18=";
2018-04-20 16:20:45 +01:00
};
2020-10-21 19:48:39 +01:00
tools = [
"agile"
"bamboo"
"bitbucket"
"confluence"
"csv"
"hipchat"
"jira"
"servicedesk"
"structure"
"tempo"
"trello"
"upm"
];
2020-10-21 19:48:39 +01:00
2018-04-20 16:20:45 +01:00
installPhase = ''
mkdir -p $out/{bin,share/doc/atlassian-cli}
cp -r lib $out/share/java
cp -r README.txt license $out/share/doc/atlassian-cli
for tool in $tools
do
substitute ${./wrapper.sh} $out/bin/$tool \
--subst-var out \
--subst-var-by jre ${jre} \
--subst-var-by tool $tool
chmod +x $out/bin/$tool
done
'';
2020-10-21 19:48:39 +01:00
meta = with lib; {
2018-04-20 16:20:45 +01:00
description = "An integrated family of CLIs for various Atlassian applications";
homepage = "https://bobswift.atlassian.net/wiki/spaces/ACLI/overview";
license = licenses.unfreeRedistributable;
maintainers = with maintainers; [ twey ];
inherit (jre.meta) platforms;
2018-04-20 16:20:45 +01:00
};
}