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";
2019-09-26 15:37:15 +01:00
version = "2.190.1";
src = fetchurl {
2018-02-14 14:07:08 +00:00
url = "http://mirrors.jenkins.io/war-stable/${version}/jenkins.war";
2019-09-26 15:37:15 +01:00
sha256 = "01bg8g1x0g479k0vz2dxzfkn6a3pp5sdqj6nmmmccgs2v4jivys6";
};
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 ];
};
}