21 lines
555 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "jenkins-${version}";
2016-02-17 00:37:55 -06:00
version = "1.647";
src = fetchurl {
url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war";
2016-02-17 00:37:55 -06:00
sha256 = "03r0wic5y8yhpa353s5px7l6m63p7jkb56sh6k4k5dacsc4qcxsj";
};
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";
}