25 lines
636 B
Nix
25 lines
636 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "jenkins";
|
|
version = "2.190.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://mirrors.jenkins.io/war-stable/${version}/jenkins.war";
|
|
sha256 = "09zij2gpg1i0pkx1nsgccc26p8z4gy4ljhch8m767xaa0000lqj7";
|
|
};
|
|
|
|
buildCommand = ''
|
|
mkdir -p "$out/webapps"
|
|
cp "$src" "$out/webapps/jenkins.war"
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|