2021-01-11 07:54:33 +00:00
|
|
|
|
{ lib, stdenv, fetchzip, jre }:
|
2018-05-24 07:52:10 +00:00
|
|
|
|
|
2018-05-24 04:37:33 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
|
pname = "atlassian-cli";
|
2021-02-18 20:08:10 +00:00
|
|
|
|
version = "9.6.0";
|
2020-10-21 18:48:39 +00:00
|
|
|
|
|
2018-04-20 15:20:45 +00:00
|
|
|
|
src = fetchzip {
|
2019-08-15 12:41:18 +00:00
|
|
|
|
url = "https://bobswift.atlassian.net/wiki/download/attachments/16285777/${pname}-${version}-distribution.zip";
|
2021-02-18 20:08:10 +00:00
|
|
|
|
sha256 = "sha256-55ydhprVC9NdDMUrKbpSAEQBb9zRYgwOc7k8aP4R89A=";
|
2018-04-20 15:20:45 +00:00
|
|
|
|
};
|
2020-10-21 18:48:39 +00:00
|
|
|
|
|
2018-05-24 07:52:10 +00:00
|
|
|
|
tools = [
|
|
|
|
|
"agile"
|
|
|
|
|
"bamboo"
|
|
|
|
|
"bitbucket"
|
|
|
|
|
"confluence"
|
|
|
|
|
"csv"
|
|
|
|
|
"hipchat"
|
|
|
|
|
"jira"
|
|
|
|
|
"servicedesk"
|
|
|
|
|
"structure"
|
|
|
|
|
"tempo"
|
|
|
|
|
"trello"
|
|
|
|
|
"upm"
|
|
|
|
|
];
|
2020-10-21 18:48:39 +00:00
|
|
|
|
|
2018-04-20 15:20:45 +00: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 18:48:39 +00:00
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
|
meta = with lib; {
|
2018-04-20 15:20:45 +00:00
|
|
|
|
description = "An integrated family of CLI’s for various Atlassian applications";
|
2020-04-01 01:11:51 +00:00
|
|
|
|
homepage = "https://bobswift.atlassian.net/wiki/spaces/ACLI/overview";
|
2018-05-24 07:52:10 +00:00
|
|
|
|
license = licenses.unfreeRedistributable;
|
2022-06-02 13:38:41 +00:00
|
|
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
2018-05-24 07:52:10 +00:00
|
|
|
|
maintainers = with maintainers; [ twey ];
|
|
|
|
|
inherit (jre.meta) platforms;
|
2018-04-20 15:20:45 +00:00
|
|
|
|
};
|
|
|
|
|
}
|