891a43bab2
No release notes for 9.11.1 so far. For 9.11.0: https://confluence.atlassian.com/jirasoftware/issues-resolved-in-9-11-0-1282244702.html However, the 9.6 series hat its last release in January 2023[1], so going to the latest 9.x release with recent patch-level releases. [1] https://www.atlassian.com/de/software/jira/update
45 lines
1.3 KiB
Nix
45 lines
1.3 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, gawk
|
|
, enableSSO ? false
|
|
, makeWrapper
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "atlassian-jira";
|
|
version = "9.11.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://product-downloads.atlassian.com/software/jira/downloads/atlassian-jira-software-${version}.tar.gz";
|
|
sha256 = "sha256-ertaJrURAMViQ5WVa8JgCu9vlTNwGVRiPTt7grIrgZQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
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
|
|
'';
|
|
|
|
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; [ globin ciil megheaiulian techknowlogick ma27 ];
|
|
};
|
|
}
|