{ stdenv, fetchurl }: stdenv.mkDerivation rec { name = "jenkins-${version}"; version = "2.53"; src = fetchurl { url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war"; sha256 = "16lgwgp4n161j4vjwkzzdz4v2d6vv62rrqmcfmb6zalyvp6wpj9r"; }; buildCommand = '' mkdir -p "$out/webapps" cp "$src" "$out/webapps/jenkins.war" ''; meta = with stdenv.lib; { description = "An extendable open source continuous integration server"; homepage = http://jenkins-ci.org; license = licenses.mit; platforms = platforms.all; maintainers = with maintainers; [ coconnor fpletz ]; }; }