varnish: 4.0.3 -> 5.0.0
This commit is contained in:
parent
6db593164a
commit
a9c1d92695
@ -1,25 +1,30 @@
|
|||||||
{ stdenv, fetchurl, pcre, libxslt, groff, ncurses, pkgconfig, readline, python
|
{ stdenv, fetchurl, pcre, libxslt, groff, ncurses, pkgconfig, readline, libedit
|
||||||
, pythonPackages }:
|
, python, pythonPackages }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "4.0.3";
|
version = "5.0.0";
|
||||||
name = "varnish-${version}";
|
name = "varnish-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://repo.varnish-cache.org/source/${name}.tar.gz";
|
url = "http://repo.varnish-cache.org/source/${name}.tar.gz";
|
||||||
sha256 = "01l2iypajkdanxpbvzfxm6vs4jay4dgw7lmchqidnivz15sa3fcl";
|
sha256 = "0jizha1mwqk42zmkrh80y07vfl78mg1d9pp5w83qla4xn9ras0ai";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pcre libxslt groff ncurses pkgconfig readline python
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
pythonPackages.docutils];
|
buildInputs = [
|
||||||
|
pcre libxslt groff ncurses readline python libedit
|
||||||
|
pythonPackages.docutils
|
||||||
|
];
|
||||||
|
|
||||||
buildFlags = "localstatedir=/var/spool";
|
buildFlags = "localstatedir=/var/spool";
|
||||||
|
|
||||||
meta = {
|
outputs = [ "out" "dev" "man" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
description = "Web application accelerator also known as a caching HTTP reverse proxy";
|
description = "Web application accelerator also known as a caching HTTP reverse proxy";
|
||||||
homepage = "https://www.varnish-cache.org";
|
homepage = "https://www.varnish-cache.org";
|
||||||
license = stdenv.lib.licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
maintainers = [ stdenv.lib.maintainers.garbas ];
|
maintainers = with maintainers; [ garbas fpletz ];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user