tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
varnish: update to 4.0.3
Rok Garbas
11 years ago
e393a8b3
bdcdc183
+6
-4
1 changed file
expand all
collapse all
unified
split
pkgs
servers
varnish
default.nix
+6
-4
pkgs/servers/varnish/default.nix
reviewed
···
1
1
-
{ stdenv, fetchurl, pcre, libxslt, groff, ncurses, pkgconfig, readline, python }:
1
1
+
{ stdenv, fetchurl, pcre, libxslt, groff, ncurses, pkgconfig, readline, python
2
2
+
, pythonPackages }:
2
3
3
4
stdenv.mkDerivation rec {
4
4
-
version = "3.0.6";
5
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
9
-
sha256 = "1dw0nrplx5pa09z8vbjpncniv3qib5bh3qp3yqbk2d774n7ys3c4";
10
10
+
sha256 = "01l2iypajkdanxpbvzfxm6vs4jay4dgw7lmchqidnivz15sa3fcl";
10
11
};
11
12
12
12
-
buildInputs = [ pcre libxslt groff ncurses pkgconfig readline python ];
13
13
+
buildInputs = [ pcre libxslt groff ncurses pkgconfig readline python
14
14
+
pythonPackages.docutils];
13
15
14
16
meta = {
15
17
description = "Web application accelerator also known as a caching HTTP reverse proxy";