mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-05 20:11:43 +03:00
21 lines
555 B
Nix
21 lines
555 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "jenkins-${version}";
|
|
version = "1.653";
|
|
|
|
src = fetchurl {
|
|
url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war";
|
|
sha256 = "1z24vddr8v64g4x3s7qx5n30sjcm2xpz7mn23zlc0n8lhnmkzqs8";
|
|
};
|
|
meta = with stdenv.lib; {
|
|
description = "An extendable open source continuous integration server";
|
|
homepage = http://jenkins-ci.org;
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.coconnor ];
|
|
};
|
|
|
|
buildCommand = "ln -s $src $out";
|
|
}
|