25 lines
645 B
Nix
25 lines
645 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "jenkins-${version}";
|
|
version = "2.121.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://mirrors.jenkins.io/war-stable/${version}/jenkins.war";
|
|
sha256 = "00ln31ahhsihnxba2hldrjxdpyxl7xw731493a24cqlkdq89s3ys";
|
|
};
|
|
|
|
buildCommand = ''
|
|
mkdir -p "$out/webapps"
|
|
cp "$src" "$out/webapps/jenkins.war"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An extendable open source continuous integration server";
|
|
homepage = http://jenkins-ci.org;
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ coconnor fpletz earldouglas ];
|
|
};
|
|
}
|