mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
5b00f65402
CVE-2019-3395, CVE-2019-3396
45 lines
1.5 KiB
Nix
45 lines
1.5 KiB
Nix
{ stdenv, lib, fetchurl
|
|
, enableSSO ? false
|
|
, crowdProperties ? null
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "atlassian-confluence-${version}";
|
|
version = "6.14.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://product-downloads.atlassian.com/software/confluence/downloads/${name}.tar.gz";
|
|
sha256 = "012lh2838l2n7wkj42isxspxw3ix54467vnzvxbsq8wnf2m367ln";
|
|
};
|
|
|
|
buildPhase = ''
|
|
echo "confluence.home=/run/confluence/home" > confluence/WEB-INF/classes/confluence-init.properties
|
|
mv conf/server.xml conf/server.xml.dist
|
|
ln -sf /run/confluence/home/deploy conf/Standalone
|
|
ln -sf /run/confluence/server.xml conf/server.xml
|
|
rm -r logs; ln -sf /run/confluence/logs/ .
|
|
rm -r work; ln -sf /run/confluence/work/ .
|
|
rm -r temp; ln -sf /run/confluence/temp/ .
|
|
'' + lib.optionalString enableSSO ''
|
|
substituteInPlace confluence/WEB-INF/classes/seraph-config.xml \
|
|
--replace com.atlassian.confluence.user.ConfluenceAuthenticator\
|
|
com.atlassian.confluence.user.ConfluenceCrowdSSOAuthenticator
|
|
'' + lib.optionalString (crowdProperties != null) ''
|
|
cat <<EOF > confluence/WEB-INF/classes/crowd.properties
|
|
${crowdProperties}
|
|
EOF
|
|
'';
|
|
|
|
installPhase = ''
|
|
cp -rva . $out
|
|
patchShebangs $out/bin
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Team collaboration software written in Java and mainly used in corporate environments";
|
|
homepage = https://www.atlassian.com/software/confluence;
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ fpletz globin ];
|
|
};
|
|
}
|