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
47 lines
1.4 KiB
Nix
47 lines
1.4 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, gawk
|
|
, enableSSO ? false
|
|
, crowdProperties ? null
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "atlassian-jira";
|
|
version = "8.14.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://product-downloads.atlassian.com/software/jira/downloads/atlassian-jira-software-${version}.tar.gz";
|
|
sha256 = "12dm0sasw98ywd074rjd9hnbymvy8z16bicjxfxqz91n1y13732i";
|
|
};
|
|
|
|
buildPhase = ''
|
|
mv conf/server.xml conf/server.xml.dist
|
|
ln -sf /run/atlassian-jira/server.xml conf/server.xml
|
|
rm -r logs; ln -sf /run/atlassian-jira/logs/ .
|
|
rm -r work; ln -sf /run/atlassian-jira/work/ .
|
|
rm -r temp; ln -sf /run/atlassian-jira/temp/ .
|
|
substituteInPlace bin/check-java.sh \
|
|
--replace "awk" "${gawk}/bin/gawk"
|
|
'' + lib.optionalString enableSSO ''
|
|
substituteInPlace atlassian-jira/WEB-INF/classes/seraph-config.xml \
|
|
--replace com.atlassian.jira.security.login.JiraSeraphAuthenticator \
|
|
com.atlassian.jira.security.login.SSOSeraphAuthenticator
|
|
'' + lib.optionalString (crowdProperties != null) ''
|
|
cat <<EOF > atlassian-jira/WEB-INF/classes/crowd.properties
|
|
${crowdProperties}
|
|
EOF
|
|
'';
|
|
|
|
installPhase = ''
|
|
cp -rva . $out
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Proprietary issue tracking product, also providing project management functions";
|
|
homepage = "https://www.atlassian.com/software/jira";
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ fpletz globin ciil ];
|
|
};
|
|
}
|