atlassian-bamboo: init at 8.1.3 (#164931)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
techknowlogick 2022-03-27 09:15:29 -04:00 committed by GitHub
parent 620ead69a4
commit 4bedc8d1c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };