2021-07-26 02:45:00 +01:00
|
|
|
{ lib, stdenv, fetchurl, pcre, libxslt, groff, ncurses, pkg-config, readline, libedit, coreutils
|
2019-11-02 23:07:47 +00:00
|
|
|
, python3, makeWrapper }:
|
2013-04-01 00:24:56 +01:00
|
|
|
|
2018-03-20 06:19:32 +00:00
|
|
|
let
|
2019-11-02 23:07:47 +00:00
|
|
|
common = { version, sha256, extraNativeBuildInputs ? [] }:
|
2018-03-20 06:19:32 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "varnish";
|
|
|
|
inherit version;
|
2018-03-20 06:19:32 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-13 22:52:01 +01:00
|
|
|
url = "https://varnish-cache.org/_downloads/${pname}-${version}.tgz";
|
2018-03-20 06:19:32 +00:00
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
2019-11-02 23:07:47 +00:00
|
|
|
passthru.python = python3;
|
2019-08-15 16:14:40 +01:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = with python3.pkgs; [ pkg-config docutils sphinx ];
|
2018-03-20 06:19:32 +00:00
|
|
|
buildInputs = [
|
2019-11-02 23:07:47 +00:00
|
|
|
pcre libxslt groff ncurses readline libedit makeWrapper python3
|
2019-08-13 13:46:15 +01:00
|
|
|
];
|
2018-03-20 06:19:32 +00:00
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
buildFlags = [ "localstatedir=/var/spool" ];
|
2018-03-20 06:19:32 +00:00
|
|
|
|
2021-07-26 02:45:00 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace bin/varnishtest/vtc_main.c --replace /bin/rm "${coreutils}/bin/rm"
|
|
|
|
'';
|
|
|
|
|
2018-03-20 06:19:32 +00:00
|
|
|
postInstall = ''
|
2021-01-15 07:07:56 +00:00
|
|
|
wrapProgram "$out/sbin/varnishd" --prefix PATH : "${lib.makeBinPath [ stdenv.cc ]}"
|
2018-03-20 06:19:32 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
# https://github.com/varnishcache/varnish-cache/issues/1875
|
2021-01-15 07:07:56 +00:00
|
|
|
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isi686 "-fexcess-precision=standard";
|
2018-03-20 06:19:32 +00:00
|
|
|
|
|
|
|
outputs = [ "out" "dev" "man" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-03-20 06:19:32 +00:00
|
|
|
description = "Web application accelerator also known as a caching HTTP reverse proxy";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.varnish-cache.org";
|
2018-03-20 06:19:32 +00:00
|
|
|
license = licenses.bsd2;
|
2019-07-03 10:27:39 +01:00
|
|
|
maintainers = with maintainers; [ fpletz ];
|
2018-03-20 06:19:32 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
2019-11-02 23:07:47 +00:00
|
|
|
varnish60 = common {
|
2021-01-26 21:00:29 +00:00
|
|
|
version = "6.0.7";
|
|
|
|
sha256 = "0njs6xpc30nc4chjdm4d4g63bigbxhi4dc46f4az3qcz51r8zl2a";
|
2018-03-20 06:19:32 +00:00
|
|
|
};
|
2021-07-26 02:23:40 +01:00
|
|
|
varnish65 = common {
|
|
|
|
version = "6.5.2";
|
|
|
|
sha256 = "041gc22h8cwsb8jw7zdv6yk5h8xg2q0g655m5zhi5jxq35f2sljx";
|
|
|
|
};
|
2013-04-01 00:24:56 +01:00
|
|
|
}
|