mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
2ee12a93de
It's time again, I guess :> Main motivation is to stop being pinged about software that I maintained for work now that I'm about to switch jobs. There's no point in pinging me to review/test updates or to debug issues in e.g. the Atlassian stack or on mailman since I use neither personally. But there's also a bunch of other stuff that I stopped using personally. While at it I realized that I'm still maintainer of a few tests & modules related to packages I stopped maintaining in the past already.
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 ];
|
|
};
|
|
}
|