2022-01-13 20:06:32 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, pcre, pcre2, jemalloc, libxslt, groff, ncurses, pkg-config, readline, libedit
|
2022-09-30 11:47:45 +00:00
|
|
|
, coreutils, python3, makeWrapper, nixosTests }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
let
|
2022-08-12 12:06:08 +00:00
|
|
|
common = { version, hash, extraNativeBuildInputs ? [] }:
|
2020-04-24 23:36:52 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "varnish";
|
|
|
|
inherit version;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://varnish-cache.org/_downloads/${pname}-${version}.tgz";
|
2022-08-12 12:06:08 +00:00
|
|
|
inherit hash;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-08-21 13:32:41 +00:00
|
|
|
nativeBuildInputs = with python3.pkgs; [ pkg-config docutils sphinx makeWrapper];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [
|
2022-08-21 13:32:41 +00:00
|
|
|
libxslt groff ncurses readline libedit python3
|
2021-10-04 12:37:57 +00:00
|
|
|
]
|
|
|
|
++ lib.optional (lib.versionOlder version "7") pcre
|
2022-01-13 20:06:32 +00:00
|
|
|
++ lib.optional (lib.versionAtLeast version "7") pcre2
|
|
|
|
++ lib.optional stdenv.hostPlatform.isLinux jemalloc;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildFlags = [ "localstatedir=/var/spool" ];
|
|
|
|
|
2021-08-18 13:19:15 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace bin/varnishtest/vtc_main.c --replace /bin/rm "${coreutils}/bin/rm"
|
|
|
|
'';
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
postInstall = ''
|
2021-01-15 22:18:51 +00:00
|
|
|
wrapProgram "$out/sbin/varnishd" --prefix PATH : "${lib.makeBinPath [ stdenv.cc ]}"
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
# https://github.com/varnishcache/varnish-cache/issues/1875
|
2021-01-15 22:18:51 +00:00
|
|
|
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isi686 "-fexcess-precision=standard";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
outputs = [ "out" "dev" "man" ];
|
|
|
|
|
2022-09-30 11:47:45 +00:00
|
|
|
passthru = {
|
|
|
|
python = python3;
|
|
|
|
tests = nixosTests."varnish${builtins.replaceStrings [ "." ] [ "" ] (lib.versions.majorMinor version)}";
|
|
|
|
};
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2022-06-16 17:23:12 +00:00
|
|
|
broken = stdenv.isDarwin;
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Web application accelerator also known as a caching HTTP reverse proxy";
|
|
|
|
homepage = "https://www.varnish-cache.org";
|
|
|
|
license = licenses.bsd2;
|
2022-08-12 12:06:08 +00:00
|
|
|
maintainers = with maintainers; [ ajs124 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
2022-09-30 11:47:45 +00:00
|
|
|
# EOL TBA
|
2020-04-24 23:36:52 +00:00
|
|
|
varnish60 = common {
|
2022-11-21 17:40:18 +00:00
|
|
|
version = "6.0.11";
|
|
|
|
hash = "sha256-UVkA2+tH/9MOs5BlyuAzFnmD7Pm9A6lDWic2B+HRKNs=";
|
2022-03-30 09:31:56 +00:00
|
|
|
};
|
2022-09-30 11:47:45 +00:00
|
|
|
# EOL 2023-09-15
|
|
|
|
varnish72 = common {
|
2022-11-21 17:40:18 +00:00
|
|
|
version = "7.2.1";
|
|
|
|
hash = "sha256-TZN9FyCo7BnFM/ly2TA6HJiJt7/KdDeJOuXCfPIEqUA=";
|
2022-09-30 11:47:45 +00:00
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|