nixpkgs/pkgs/servers/varnish/default.nix

60 lines
1.8 KiB
Nix
Raw Normal View History

2017-01-22 01:38:10 +01:00
{ stdenv, fetchurl, pcre, libxslt, groff, ncurses, pkgconfig, readline, libedit
2019-08-13 14:46:15 +02:00
, python2, python3, makeWrapper }:
2013-04-01 01:24:56 +02:00
let
2019-08-13 14:46:15 +02:00
common = { version, sha256, python, extraNativeBuildInputs ? [] }:
stdenv.mkDerivation rec {
2019-08-13 23:52:01 +02:00
pname = "varnish";
inherit version;
src = fetchurl {
2019-08-13 23:52:01 +02:00
url = "https://varnish-cache.org/_downloads/${pname}-${version}.tgz";
inherit sha256;
};
passthru.python = python;
2019-08-13 14:46:15 +02:00
nativeBuildInputs = with python.pkgs; [ pkgconfig docutils ] ++ extraNativeBuildInputs;
buildInputs = [
2019-08-13 14:46:15 +02:00
pcre libxslt groff ncurses readline libedit makeWrapper python
];
buildFlags = "localstatedir=/var/spool";
postInstall = ''
wrapProgram "$out/sbin/varnishd" --prefix PATH : "${stdenv.lib.makeBinPath [ stdenv.cc ]}"
'';
# https://github.com/varnishcache/varnish-cache/issues/1875
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isi686 "-fexcess-precision=standard";
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;
license = licenses.bsd2;
maintainers = with maintainers; [ fpletz ];
platforms = platforms.unix;
};
};
in
{
varnish4 = common {
2018-10-16 17:50:51 +02:00
version = "4.1.10";
sha256 = "08kwx0il6cqxsx3897042plh1yxjaanbaqjbspfl0xgvyvxk6j1n";
2019-08-13 14:46:15 +02:00
python = python2;
};
varnish5 = common {
version = "5.2.1";
2017-11-26 08:10:49 +01:00
sha256 = "1cqlj12m426c1lak1hr1fx5zcfsjjvka3hfirz47hvy1g2fjqidq";
2019-08-13 14:46:15 +02:00
python = python2;
2013-04-01 01:24:56 +02:00
};
varnish6 = common {
version = "6.3.0";
sha256 = "0zwlffdd1m0ih33nq40xf2wwdyvr4czmns2fs90qpfnwy72xxk4m";
2019-08-13 14:46:15 +02:00
python = python3;
extraNativeBuildInputs = [ python3.pkgs.sphinx ];
2013-04-01 01:24:56 +02:00
};
}