2014-02-10 20:07:12 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-09-08 15:05:15 +00:00
|
|
|
name = "jenkins-${version}";
|
2017-11-07 14:56:14 +00:00
|
|
|
version = "2.88";
|
2014-02-10 20:07:12 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war";
|
2017-11-07 14:56:14 +00:00
|
|
|
sha256 = "062hnbyj73311sxhkwla6sl33zb43v8p7hjssgbh0bfvgmnlayim";
|
2014-02-10 20:07:12 +00:00
|
|
|
};
|
2016-07-15 12:45:23 +00:00
|
|
|
|
|
|
|
buildCommand = ''
|
2016-07-15 14:57:16 +00:00
|
|
|
mkdir -p "$out/webapps"
|
|
|
|
cp "$src" "$out/webapps/jenkins.war"
|
2016-07-15 12:45:23 +00:00
|
|
|
'';
|
|
|
|
|
2014-09-08 15:05:15 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "An extendable open source continuous integration server";
|
2014-02-10 20:07:12 +00:00
|
|
|
homepage = http://jenkins-ci.org;
|
2014-09-08 15:05:15 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
2016-07-17 14:36:06 +00:00
|
|
|
maintainers = with maintainers; [ coconnor fpletz ];
|
2014-02-10 20:07:12 +00:00
|
|
|
};
|
|
|
|
}
|