3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/continuous-integration/jenkins/default.nix

25 lines
636 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "jenkins";
2020-04-01 13:50:57 +01:00
version = "2.222.1";
src = fetchurl {
2018-02-14 14:07:08 +00:00
url = "http://mirrors.jenkins.io/war-stable/${version}/jenkins.war";
2020-04-01 13:50:57 +01:00
sha256 = "0glmx8xi99mbfr84hi4sn36qkxw00rfn8wlz5n674ygbdj1vnv2s";
};
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 12:01:51 +00:00
homepage = https://jenkins-ci.org;
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ coconnor fpletz earldouglas ];
};
}