2014-02-10 12:07:12 -08:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-09-08 17:05:15 +02:00
|
|
|
name = "jenkins-${version}";
|
2016-02-22 00:37:07 -06:00
|
|
|
version = "1.649";
|
2014-02-10 12:07:12 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war";
|
2016-02-22 00:37:07 -06:00
|
|
|
sha256 = "10lvrdd6mfgkz0rdc41hg9fai44vzxy6qlayfvkjg29xgqm0n9ya";
|
2014-02-10 12:07:12 -08:00
|
|
|
};
|
2014-09-08 17:05:15 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "An extendable open source continuous integration server";
|
2014-02-10 12:07:12 -08:00
|
|
|
homepage = http://jenkins-ci.org;
|
2014-09-08 17:05:15 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.coconnor ];
|
2014-02-10 12:07:12 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
buildCommand = "ln -s $src $out";
|
|
|
|
}
|