25 lines
636 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "jenkins";
2019-08-29 12:40:21 -04:00
version = "2.176.3";
src = fetchurl {
2018-02-14 07:07:08 -07:00
url = "http://mirrors.jenkins.io/war-stable/${version}/jenkins.war";
2019-08-29 12:40:21 -04:00
sha256 = "18wsggb4fhlacpxpxkd04zwj56gqjccrbkhs35vkyixwwazcf1ll";
};
buildCommand = ''
mkdir -p "$out/webapps"
cp "$src" "$out/webapps/jenkins.war"
'';
meta = with stdenv.lib; {
description = "An extendable open source continuous integration server";
2018-11-22 13:01:51 +01:00
homepage = https://jenkins-ci.org;
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ coconnor fpletz earldouglas ];
};
}