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