571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
50 lines
1.2 KiB
Nix
50 lines
1.2 KiB
Nix
{ lib, stdenv, fetchzip, jre }:
|
||
|
||
stdenv.mkDerivation rec {
|
||
pname = "atlassian-cli";
|
||
version = "9.6.0";
|
||
|
||
src = fetchzip {
|
||
url = "https://bobswift.atlassian.net/wiki/download/attachments/16285777/${pname}-${version}-distribution.zip";
|
||
sha256 = "sha256-55ydhprVC9NdDMUrKbpSAEQBb9zRYgwOc7k8aP4R89A=";
|
||
};
|
||
|
||
tools = [
|
||
"agile"
|
||
"bamboo"
|
||
"bitbucket"
|
||
"confluence"
|
||
"csv"
|
||
"hipchat"
|
||
"jira"
|
||
"servicedesk"
|
||
"structure"
|
||
"tempo"
|
||
"trello"
|
||
"upm"
|
||
];
|
||
|
||
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
|
||
'';
|
||
|
||
meta = with lib; {
|
||
description = "Integrated family of CLI’s for various Atlassian applications";
|
||
homepage = "https://bobswift.atlassian.net/wiki/spaces/ACLI/overview";
|
||
license = licenses.unfreeRedistributable;
|
||
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
||
maintainers = with maintainers; [ twey ];
|
||
inherit (jre.meta) platforms;
|
||
};
|
||
}
|