mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 21:17:46 +00:00
65 lines
1.9 KiB
Nix
65 lines
1.9 KiB
Nix
{ stdenv, fetchurl, common-updater-scripts, coreutils, git, gnused, nix, nixfmt
|
|
, writeScript, nixosTests, jq, cacert, curl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "jenkins";
|
|
version = "2.263.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://mirrors.jenkins.io/war-stable/${version}/jenkins.war";
|
|
sha256 = "13l7y1307iv54z2zsjy0slzv2hpqv9i35qb15xa8s6sl7lcm9l49";
|
|
};
|
|
|
|
buildCommand = ''
|
|
mkdir -p "$out/webapps"
|
|
cp "$src" "$out/webapps/jenkins.war"
|
|
'';
|
|
|
|
passthru = {
|
|
tests = { inherit (nixosTests) jenkins; };
|
|
|
|
updateScript = writeScript "update.sh" ''
|
|
#!${stdenv.shell}
|
|
set -o errexit
|
|
PATH=${
|
|
stdenv.lib.makeBinPath [
|
|
cacert
|
|
common-updater-scripts
|
|
coreutils
|
|
curl
|
|
git
|
|
gnused
|
|
jq
|
|
nix
|
|
nixfmt
|
|
]
|
|
}
|
|
|
|
core_json="$(curl -s --fail --location https://updates.jenkins.io/stable/update-center.actual.json | jq .core)"
|
|
oldVersion=$(nix-instantiate --eval -E "with import ./. {}; lib.getVersion jenkins" | tr -d '"')
|
|
|
|
version="$(jq -r .version <<<$core_json)"
|
|
sha256="$(jq -r .sha256 <<<$core_json)"
|
|
hash="$(nix-hash --type sha256 --to-base32 "$sha256")"
|
|
url="$(jq -r .url <<<$core_json)"
|
|
|
|
if [ ! "$oldVersion" = "$version" ]; then
|
|
update-source-version jenkins "$version" "$hash" "$url"
|
|
nixpkgs="$(git rev-parse --show-toplevel)"
|
|
default_nix="$nixpkgs/pkgs/development/tools/continuous-integration/jenkins/default.nix"
|
|
nixfmt "$default_nix"
|
|
else
|
|
echo "jenkins is already up-to-date"
|
|
fi
|
|
'';
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An extendable open source continuous integration server";
|
|
homepage = "https://jenkins-ci.org";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ coconnor fpletz earldouglas nequissimus ];
|
|
};
|
|
}
|