atlassian-bamboo: init at 8.1.3 (#164931)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
620ead69a4
commit
4bedc8d1c6
37
pkgs/servers/atlassian/bamboo.nix
Normal file
37
pkgs/servers/atlassian/bamboo.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ stdenvNoCC, lib, fetchurl, mysql_jdbc
|
||||
, withMysql ? true
|
||||
}:
|
||||
|
||||
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
pname = "atlassian-bamboo";
|
||||
version = "8.1.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://product-downloads.atlassian.com/software/bamboo/downloads/atlassian-bamboo-${version}.tar.gz";
|
||||
sha256 = "sha256-M406audmwCS4SRPj8oYxZ+tBpt9bGoOsA3+9WwdZ1fw=";
|
||||
};
|
||||
|
||||
buildPhase = ''
|
||||
echo "bamboo.home=/run/bamboo/home" > atlassian-bamboo/WEB-INF/classes/bamboo-init.properties
|
||||
mv conf/server.xml conf/server.xml.dist
|
||||
ln -sf /run/atlassian-bamboo/server.xml conf/server.xml
|
||||
rm -r logs; ln -sf /run/atlassian-bamboo/logs/ .
|
||||
rm -r temp; ln -sf /run/atlassian-bamboo/temp/ .
|
||||
rm -r work; ln -sf /run/atlassian-bamboo/work/ .
|
||||
'' + lib.optionalString withMysql ''
|
||||
cp -v ${mysql_jdbc}/share/java/*jar atlassian-bamboo/lib/
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
cp -rva . $out
|
||||
patchShebangs $out/bin
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Bamboo Data Center is a continuous delivery server.";
|
||||
homepage = "https://www.atlassian.com/software/bamboo";
|
||||
license = with licenses; [ unfree ];
|
||||
maintainers = with maintainers; [ techknowlogick ];
|
||||
};
|
||||
}
|
@ -21198,6 +21198,7 @@ with pkgs;
|
||||
|
||||
archiveopteryx = callPackage ../servers/mail/archiveopteryx { };
|
||||
|
||||
atlassian-bamboo = callPackage ../servers/atlassian/bamboo.nix { };
|
||||
atlassian-confluence = callPackage ../servers/atlassian/confluence.nix { };
|
||||
atlassian-crowd = callPackage ../servers/atlassian/crowd.nix { };
|
||||
atlassian-jira = callPackage ../servers/atlassian/jira.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user