2021-09-30 19:26:25 +01:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, pcre, pcre2, 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 = [
|
2021-09-15 21:45:58 +01:00
|
|
|
libxslt groff ncurses readline libedit makeWrapper python3
|
|
|
|
]
|
|
|
|
++ lib.optional (lib.versionOlder version "7") pcre
|
|
|
|
++ lib.optional (lib.versionAtLeast version "7") pcre2;
|
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-09-15 21:46:37 +01:00
|
|
|
version = "6.0.8";
|
|
|
|
sha256 = "1zk83hfxgjq1d0n4zx86q3f05y9f2zc6a1miz1zcvfa052q4bljx";
|
2018-03-20 06:19:32 +00:00
|
|
|
};
|
2021-09-30 19:26:25 +01:00
|
|
|
varnish70 = (common {
|
2021-09-15 21:45:58 +01:00
|
|
|
version = "7.0.0";
|
|
|
|
sha256 = "11z0pa618lh925ih67wmp1gqk7i46l486j4spjy71g1n3w5mqylc";
|
2021-09-30 19:26:25 +01:00
|
|
|
}).overrideAttrs (oA: {
|
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/varnishcache/varnish-cache/commit/20e007a5b17c1f68f70ab42080de384f9e192900.patch";
|
|
|
|
sha256 = "0vvihbjknb0skdv2ksn2lz89pwmn4f2rjmb6q65cvgnnjfj46s82";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
});
|
2013-04-01 00:24:56 +01:00
|
|
|
}
|