nixpkgs/pkgs/servers/varnish/default.nix

38 lines
1.2 KiB
Nix
Raw Normal View History

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