nixpkgs/pkgs/servers/varnish/default.nix

34 lines
1020 B
Nix
Raw Normal View History

2017-01-22 03:38:10 +03:00
{ stdenv, fetchurl, pcre, libxslt, groff, ncurses, pkgconfig, readline, libedit
, python, pythonPackages }:
2013-04-01 03:24:56 +04:00
stdenv.mkDerivation rec {
2017-01-22 03:38:10 +03:00
version = "5.0.0";
2013-04-01 03:24:56 +04:00
name = "varnish-${version}";
src = fetchurl {
url = "http://repo.varnish-cache.org/source/${name}.tar.gz";
2017-01-22 03:38:10 +03:00
sha256 = "0jizha1mwqk42zmkrh80y07vfl78mg1d9pp5w83qla4xn9ras0ai";
2013-04-01 03:24:56 +04:00
};
2017-01-22 03:38:10 +03:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
pcre libxslt groff ncurses readline python libedit
pythonPackages.docutils
];
2013-04-01 03:24:56 +04:00
buildFlags = "localstatedir=/var/spool";
2017-02-27 16:38:57 +03:00
# https://github.com/varnishcache/varnish-cache/issues/1875
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isi686 "-fexcess-precision=standard";
2017-01-22 03:38:10 +03:00
outputs = [ "out" "dev" "man" ];
meta = with stdenv.lib; {
description = "Web application accelerator also known as a caching HTTP reverse proxy";
2013-04-01 03:24:56 +04:00
homepage = "https://www.varnish-cache.org";
2017-01-22 03:38:10 +03:00
license = licenses.bsd2;
maintainers = with maintainers; [ garbas fpletz ];
platforms = platforms.linux;
2013-04-01 03:24:56 +04:00
};
}