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

{ lib, stdenv, fetchurl, fetchpatch, pcre, pcre2, jemalloc, libxslt, groff, ncurses, pkg-config, readline, libedit
, coreutils, python3, makeWrapper }:
2013-04-01 03:24:56 +04:00
let
2022-08-10 16:36:34 +03:00
common = { version, hash, extraNativeBuildInputs ? [] }:
stdenv.mkDerivation rec {
2019-08-14 00:52:01 +03:00
pname = "varnish";
inherit version;
src = fetchurl {
2019-08-14 00:52:01 +03:00
url = "https://varnish-cache.org/_downloads/${pname}-${version}.tgz";
2022-08-10 16:36:34 +03:00
inherit hash;
};
passthru.python = python3;
nativeBuildInputs = with python3.pkgs; [ pkg-config docutils sphinx makeWrapper];
buildInputs = [
libxslt groff ncurses readline libedit python3
2021-09-15 23:45:58 +03:00
]
++ lib.optional (lib.versionOlder version "7") pcre
++ lib.optional (lib.versionAtLeast version "7") pcre2
++ lib.optional stdenv.hostPlatform.isLinux jemalloc;
buildFlags = [ "localstatedir=/var/spool" ];
2021-07-26 04:45:00 +03:00
postPatch = ''
substituteInPlace bin/varnishtest/vtc_main.c --replace /bin/rm "${coreutils}/bin/rm"
'';
postInstall = ''
2021-01-15 10:07:56 +03:00
wrapProgram "$out/sbin/varnishd" --prefix PATH : "${lib.makeBinPath [ stdenv.cc ]}"
'';
# https://github.com/varnishcache/varnish-cache/issues/1875
2021-01-15 10:07:56 +03:00
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isi686 "-fexcess-precision=standard";
outputs = [ "out" "dev" "man" ];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Web application accelerator also known as a caching HTTP reverse proxy";
homepage = "https://www.varnish-cache.org";
license = licenses.bsd2;
2022-08-10 16:38:08 +03:00
maintainers = with maintainers; [ ajs124 ];
platforms = platforms.unix;
};
};
in
{
varnish60 = common {
2022-01-27 03:57:45 +03:00
version = "6.0.10";
2022-08-10 16:36:34 +03:00
hash = "sha256-a4W/dI7jeaoI43UE+G6tS6fgzEDqsXI8CUv+Wh4HJus=";
};
2022-03-17 05:25:51 +03:00
varnish71 = common {
version = "7.1.1";
hash = "sha256-LK++JZDn1Yp7rIrZm+kuRA/k04raaBbdiDbyL6UToZA=";
2022-03-17 05:25:51 +03:00
};
2013-04-01 03:24:56 +04:00
}