nixpkgs/pkgs/development/tools/continuous-integration/jenkins/default.nix

25 lines
646 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "jenkins-${version}";
2018-11-22 13:01:51 +01:00
version = "2.138.3";
src = fetchurl {
2018-02-14 15:07:08 +01:00
url = "http://mirrors.jenkins.io/war-stable/${version}/jenkins.war";
2018-11-22 13:01:51 +01:00
sha256 = "0z8yfnqg43vqhhnp27wb28686zq9kqkyicqn0162hr9h5pd4sglm";
};
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 ];
};
}