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

25 lines
638 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "jenkins";
2020-09-10 13:25:36 +00:00
version = "2.249.1";
src = fetchurl {
2018-02-14 14:07:08 +00:00
url = "http://mirrors.jenkins.io/war-stable/${version}/jenkins.war";
2020-09-10 13:25:36 +00:00
sha256 = "1mjvxl48v0rdrs6hzwh4mx5xvx3lnqs6njx3d7nfdfp2nf2s9353";
};
buildCommand = ''
mkdir -p "$out/webapps"
cp "$src" "$out/webapps/jenkins.war"
'';
meta = with stdenv.lib; {
description = "An extendable open source continuous integration server";
homepage = "https://jenkins-ci.org";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ coconnor fpletz earldouglas ];
};
}