forked from mirrors/nixpkgs
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{ lib, stdenv, fetchzip, jre }:
|
||
|
||
stdenv.mkDerivation rec {
|
||
pname = "atlassian-cli";
|
||
version = "9.4.0";
|
||
|
||
src = fetchzip {
|
||
url = "https://bobswift.atlassian.net/wiki/download/attachments/16285777/${pname}-${version}-distribution.zip";
|
||
sha256 = "091dhjkx7fdn23cj7c4071swncsbmknpvidmmjzhc0355l3p4k2g";
|
||
};
|
||
|
||
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 = "An integrated family of CLI’s for various Atlassian applications";
|
||
homepage = "https://bobswift.atlassian.net/wiki/spaces/ACLI/overview";
|
||
license = licenses.unfreeRedistributable;
|
||
maintainers = with maintainers; [ twey ];
|
||
inherit (jre.meta) platforms;
|
||
};
|
||
}
|