varnish: update to 3.0.4

This commit is contained in:
Rok Garbas 2013-11-23 15:36:20 +01:00
parent b06462f9ec
commit a8d5881c3e

View File

@ -1,15 +1,15 @@
{ stdenv, fetchurl, pcre, libxslt, groff, ncurses, pkgconfig }:
{ stdenv, fetchurl, pcre, libxslt, groff, ncurses, pkgconfig, readline }:
stdenv.mkDerivation rec {
version = "3.0.3";
version = "3.0.4";
name = "varnish-${version}";
src = fetchurl {
url = "http://repo.varnish-cache.org/source/${name}.tar.gz";
sha256 = "1cla2igwfwcm07srvk0z9cqdxh74sga0c1rsmh4b4n1gjn6x2drd";
sha256 = "0y8gml06h3wjiasfqnk7f9wrfrlgx89qz04wz3fjn8knbk5lq12f";
};
buildInputs = [ pcre libxslt groff ncurses pkgconfig ];
buildInputs = [ pcre libxslt groff ncurses pkgconfig readline ];
meta = {
description = "Web application accelerator also known as a caching HTTP reverse proxy";