2023-01-29 06:08:14 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, pcre, pcre2, jemalloc, libunwind, libxslt, groff, ncurses, pkg-config, readline, libedit
|
2022-09-27 19:45:45 +00:00
|
|
|
, coreutils, python3, makeWrapper, nixosTests }:
|
2013-03-31 23:24:56 +00:00
|
|
|
|
2018-03-20 06:19:32 +00:00
|
|
|
let
|
2022-08-10 13:36:34 +00:00
|
|
|
common = { version, hash, extraNativeBuildInputs ? [] }:
|
2018-03-20 06:19:32 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 21:52:01 +00:00
|
|
|
pname = "varnish";
|
|
|
|
inherit version;
|
2018-03-20 06:19:32 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-13 21:52:01 +00:00
|
|
|
url = "https://varnish-cache.org/_downloads/${pname}-${version}.tgz";
|
2022-08-10 13:36:34 +00:00
|
|
|
inherit hash;
|
2018-03-20 06:19:32 +00:00
|
|
|
};
|
|
|
|
|
2022-07-15 17:24:21 +00:00
|
|
|
nativeBuildInputs = with python3.pkgs; [ pkg-config docutils sphinx makeWrapper];
|
2018-03-20 06:19:32 +00:00
|
|
|
buildInputs = [
|
2022-07-15 17:24:21 +00:00
|
|
|
libxslt groff ncurses readline libedit python3
|
2021-09-15 20:45:58 +00:00
|
|
|
]
|
|
|
|
++ lib.optional (lib.versionOlder version "7") pcre
|
2022-01-07 14:06:07 +00:00
|
|
|
++ lib.optional (lib.versionAtLeast version "7") pcre2
|
2023-01-29 06:08:14 +00:00
|
|
|
++ lib.optional stdenv.hostPlatform.isDarwin libunwind
|
2022-01-07 14:06:07 +00:00
|
|
|
++ lib.optional stdenv.hostPlatform.isLinux jemalloc;
|
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 01:45:00 +00: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
|
2023-02-19 19:23:32 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isi686 "-fexcess-precision=standard";
|
2018-03-20 06:19:32 +00:00
|
|
|
|
|
|
|
outputs = [ "out" "dev" "man" ];
|
|
|
|
|
2022-09-27 19:45:45 +00:00
|
|
|
passthru = {
|
|
|
|
python = python3;
|
|
|
|
tests = nixosTests."varnish${builtins.replaceStrings [ "." ] [ "" ] (lib.versions.majorMinor version)}";
|
|
|
|
};
|
|
|
|
|
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 01:11:51 +00:00
|
|
|
homepage = "https://www.varnish-cache.org";
|
2018-03-20 06:19:32 +00:00
|
|
|
license = licenses.bsd2;
|
2023-11-17 12:35:31 +00:00
|
|
|
maintainers = teams.helsinki-systems.members;
|
2018-03-20 06:19:32 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
2023-10-09 01:06:32 +00:00
|
|
|
# EOL (LTS) TBA
|
2019-11-02 23:07:47 +00:00
|
|
|
varnish60 = common {
|
2024-03-24 14:00:47 +00:00
|
|
|
version = "6.0.13";
|
|
|
|
hash = "sha256-DcpilfnGnUenIIWYxBU4XFkMZoY+vUK/6wijZ7eIqbo=";
|
2018-03-20 06:19:32 +00:00
|
|
|
};
|
2023-10-09 12:14:21 +00:00
|
|
|
# EOL 2024-09-15
|
|
|
|
varnish74 = common {
|
2024-03-24 13:57:39 +00:00
|
|
|
version = "7.4.3";
|
|
|
|
hash = "sha256-655DUH+Dbu8uMoAtRt08+S7KPVR7pLZA/aWbQHzbG4g=";
|
2023-10-09 12:14:21 +00:00
|
|
|
};
|
2013-03-31 23:24:56 +00:00
|
|
|
}
|