lol

varnish: update to 4.0.3

+6 -4
+6 -4
pkgs/servers/varnish/default.nix
··· 1 - { stdenv, fetchurl, pcre, libxslt, groff, ncurses, pkgconfig, readline, python }: 1 + { stdenv, fetchurl, pcre, libxslt, groff, ncurses, pkgconfig, readline, python 2 + , pythonPackages }: 2 3 3 4 stdenv.mkDerivation rec { 4 - version = "3.0.6"; 5 + version = "4.0.3"; 5 6 name = "varnish-${version}"; 6 7 7 8 src = fetchurl { 8 9 url = "http://repo.varnish-cache.org/source/${name}.tar.gz"; 9 - sha256 = "1dw0nrplx5pa09z8vbjpncniv3qib5bh3qp3yqbk2d774n7ys3c4"; 10 + sha256 = "01l2iypajkdanxpbvzfxm6vs4jay4dgw7lmchqidnivz15sa3fcl"; 10 11 }; 11 12 12 - buildInputs = [ pcre libxslt groff ncurses pkgconfig readline python ]; 13 + buildInputs = [ pcre libxslt groff ncurses pkgconfig readline python 14 + pythonPackages.docutils]; 13 15 14 16 meta = { 15 17 description = "Web application accelerator also known as a caching HTTP reverse proxy";