nixpkgs/pkgs/servers/varnish/default.nix

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

60 lines
1.9 KiB
Nix
Raw Normal View History

2023-01-29 07:08:14 +01:00
{ lib, stdenv, fetchurl, fetchpatch, pcre, pcre2, jemalloc, libunwind, 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
let
2022-08-10 15:36:34 +02:00
common = { version, hash, extraNativeBuildInputs ? [] }:
stdenv.mkDerivation rec {
2019-08-13 23:52:01 +02:00
pname = "varnish";
inherit version;
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;
};
nativeBuildInputs = with python3.pkgs; [ pkg-config docutils sphinx makeWrapper];
buildInputs = [
libxslt groff ncurses readline libedit python3
2021-09-15 22:45:58 +02:00
]
++ lib.optional (lib.versionOlder version "7") pcre
++ lib.optional (lib.versionAtLeast version "7") pcre2
2023-01-29 07:08:14 +01:00
++ lib.optional stdenv.hostPlatform.isDarwin libunwind
++ lib.optional stdenv.hostPlatform.isLinux jemalloc;
buildFlags = [ "localstatedir=/var/spool" ];
2021-07-26 03:45:00 +02:00
postPatch = ''
substituteInPlace bin/varnishtest/vtc_main.c --replace /bin/rm "${coreutils}/bin/rm"
'';
postInstall = ''
2021-01-15 08:07:56 +01: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 21:45:45 +02: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 15:38:08 +02:00
maintainers = with maintainers; [ ajs124 ];
platforms = platforms.unix;
};
};
in
{
# EOL (LTS) TBA
varnish60 = common {
version = "6.0.11";
hash = "sha256-UVkA2+tH/9MOs5BlyuAzFnmD7Pm9A6lDWic2B+HRKNs=";
};
2013-04-01 01:24:56 +02:00
}