21 lines
567 B
Nix
21 lines
567 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "jenkins-${version}";
|
|
version = "1.643";
|
|
|
|
src = fetchurl {
|
|
url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war";
|
|
sha256 = "b8c6387e56d04a0a4a7ec8d9dacd379fbd5d4001d01fdfcd443f9864809f9293";
|
|
};
|
|
meta = with stdenv.lib; {
|
|
description = "An extendable open source continuous integration server";
|
|
homepage = http://jenkins-ci.org;
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.coconnor ];
|
|
};
|
|
|
|
buildCommand = "ln -s $src $out";
|
|
}
|