appfire-cli: refactor; 9.6.0 -> 12.1.0
This commit is contained in:
@@ -2,53 +2,86 @@
|
|||||||
lib,
|
lib,
|
||||||
stdenv,
|
stdenv,
|
||||||
fetchzip,
|
fetchzip,
|
||||||
|
makeBinaryWrapper,
|
||||||
|
coreutils,
|
||||||
|
findutils,
|
||||||
jre,
|
jre,
|
||||||
|
|
||||||
|
testers,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "appfire-cli";
|
pname = "appfire-cli";
|
||||||
version = "9.6.0";
|
version = "12.1.0";
|
||||||
|
|
||||||
src = fetchzip {
|
src = fetchzip {
|
||||||
url = "https://bobswift.atlassian.net/wiki/download/attachments/16285777/${pname}-${version}-distribution.zip";
|
url = "https://appfire.atlassian.net/wiki/download/attachments/60562669/acli-${finalAttrs.version}-distribution.zip";
|
||||||
sha256 = "sha256-55ydhprVC9NdDMUrKbpSAEQBb9zRYgwOc7k8aP4R89A=";
|
hash = "sha256-6p8i5ec8IAygACdsdzP8g5u24mQZ7Ci684xuu/kAADo=";
|
||||||
};
|
};
|
||||||
|
|
||||||
tools = [
|
nativeBuildInputs = [ makeBinaryWrapper ];
|
||||||
"agile"
|
|
||||||
"bamboo"
|
|
||||||
"bitbucket"
|
|
||||||
"confluence"
|
|
||||||
"csv"
|
|
||||||
"hipchat"
|
|
||||||
"jira"
|
|
||||||
"servicedesk"
|
|
||||||
"structure"
|
|
||||||
"tempo"
|
|
||||||
"trello"
|
|
||||||
"upm"
|
|
||||||
];
|
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/{bin,share/doc/atlassian-cli}
|
runHook preInstall
|
||||||
cp -r lib $out/share/java
|
|
||||||
cp -r README.txt license $out/share/doc/atlassian-cli
|
mkdir -p $out/share/{,doc/}appfire-cli
|
||||||
for tool in $tools
|
cp -r acli.sh lib $out/share/appfire-cli
|
||||||
do
|
cp -r README.txt license $out/share/doc/appfire-cli
|
||||||
substitute ${./wrapper.sh} $out/bin/$tool \
|
|
||||||
--subst-var out \
|
ACLI_SHELL=${finalAttrs.passthru.shellNames.${stdenv.hostPlatform.system} or "unsupport"}
|
||||||
--subst-var-by jre ${jre} \
|
if test -f $ACLI_SHELL; then
|
||||||
--subst-var-by tool $tool
|
install -Dm755 $ACLI_SHELL $out/share/appfire-cli/$ACLI_SHELL
|
||||||
chmod +x $out/bin/$tool
|
fi
|
||||||
done
|
|
||||||
|
substituteInPlace $out/share/appfire-cli/acli.sh \
|
||||||
|
--replace-fail 'java $' '${lib.getExe jre} $' \
|
||||||
|
--replace-fail '(find' '(${lib.getExe findutils}' \
|
||||||
|
--replace-fail dirname ${lib.getExe' coreutils "dirname"} \
|
||||||
|
--replace-fail uname ${lib.getExe' coreutils "uname"}
|
||||||
|
makeBinaryWrapper $out/share/appfire-cli/acli.sh $out/bin/acli
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
passthru = {
|
||||||
description = "Integrated family of CLI’s for various Atlassian applications";
|
shellNames = {
|
||||||
homepage = "https://bobswift.atlassian.net/wiki/spaces/ACLI/overview";
|
"x86_64-linux" = "bin/shell-linux-amd64";
|
||||||
license = licenses.unfreeRedistributable;
|
"aarch64-linux" = "bin/shell-linux-arm64";
|
||||||
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
"x86_64-darwin" = "bin/shell-macos-amd64";
|
||||||
maintainers = with maintainers; [ twey ];
|
"aarch64-darwin" = "bin/shell-macos-arm64";
|
||||||
|
};
|
||||||
|
# versionCheckHook cannot be used because appfire-cli requires $HOME to be set
|
||||||
|
tests.version = testers.testVersion {
|
||||||
|
package = finalAttrs.finalPackage;
|
||||||
|
command = "acli -a getClientInfo";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Integrated family of CLIs for Atlassian, Atlassian-related, and other applications";
|
||||||
|
longDescription = ''
|
||||||
|
Appfire CLI (ACLI) is an integrated family of CLIs for Atlassian,
|
||||||
|
Atlassian-related, and other applications.
|
||||||
|
|
||||||
|
ACLI provides a consistent and reliable automation platform that allows
|
||||||
|
users, administrators, script writers, and DevOps developers to perform
|
||||||
|
tasks, implement business processes, or apply general automation with
|
||||||
|
Atlassian products.
|
||||||
|
|
||||||
|
The CLIs are built on the Atlassian remote APIs and deliver a higher
|
||||||
|
level, client-based API that is easier to use and more powerful than
|
||||||
|
the underlying product APIs.
|
||||||
|
|
||||||
|
The upstream documentation describes configuring acli by placing
|
||||||
|
{file}`acli.properties` in the same directory as {file}`acli.sh`.
|
||||||
|
Since the /nix/store is not writable, you can instead place the file
|
||||||
|
at {file}`$HOME/acli.properties` to achieve the same effect.
|
||||||
|
'';
|
||||||
|
homepage = "https://apps.appf.re/acli";
|
||||||
|
license = lib.licenses.unfreeRedistributable;
|
||||||
|
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
|
||||||
|
maintainers = with lib.maintainers; [ twey ];
|
||||||
|
mainProgram = "acli";
|
||||||
inherit (jre.meta) platforms;
|
inherit (jre.meta) platforms;
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|||||||
@@ -1,20 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
tool=@tool@
|
|
||||||
user=ATLASSIAN_${tool^^}_USER
|
|
||||||
host=ATLASSIAN_${tool^^}_HOST
|
|
||||||
pass=ATLASSIAN_${tool^^}_PASS
|
|
||||||
|
|
||||||
[ -f ~/.atlassian-cli ] && source ~/.atlassian-cli
|
|
||||||
if [ x = ${!user-x} ] || [ x = ${!host-x} ] || [ x = ${!pass-x} ]
|
|
||||||
then
|
|
||||||
>&2 echo please define $user, $host, and $pass in '~/.atlassian-cli'
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
@jre@/bin/java \
|
|
||||||
-jar @out@/share/java/@tool@-cli-* \
|
|
||||||
--server "${!host}" \
|
|
||||||
--user "${!user}" \
|
|
||||||
--password "${!pass}" \
|
|
||||||
"$@"
|
|
||||||
Reference in New Issue
Block a user