nixpkgs/pkgs/servers/varnish/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
2.2 KiB
Nix
Raw Normal View History

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