nixpkgs/pkgs/servers/varnish/default.nix

65 lines
2.0 KiB
Nix
Raw Normal View History

2021-09-30 21:26:25 +03:00
{ lib, stdenv, fetchurl, fetchpatch, pcre, pcre2, libxslt, groff, ncurses, pkg-config, readline, libedit, coreutils
, python3, makeWrapper }:
2013-04-01 03:24:56 +04:00
let
common = { version, sha256, 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";
inherit sha256;
};
passthru.python = python3;
nativeBuildInputs = with python3.pkgs; [ pkg-config docutils sphinx ];
buildInputs = [
2021-09-15 23:45:58 +03:00
libxslt groff ncurses readline libedit makeWrapper python3
]
++ lib.optional (lib.versionOlder version "7") pcre
++ lib.optional (lib.versionAtLeast version "7") pcre2;
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; {
description = "Web application accelerator also known as a caching HTTP reverse proxy";
homepage = "https://www.varnish-cache.org";
license = licenses.bsd2;
maintainers = with maintainers; [ fpletz ];
platforms = platforms.unix;
};
};
in
{
varnish60 = common {
2021-11-25 20:02:17 +03:00
version = "6.0.9";
sha256 = "1g0pwyckc0xh6ag6wj082x9wn4q6p6krjgc16fkw1arl71c18wsh";
};
2021-09-30 21:26:25 +03:00
varnish70 = (common {
2021-11-23 21:24:09 +03:00
version = "7.0.1";
sha256 = "0q265fzarz5530g8lasvfpgks8z1kq1yh7rn88bn2qfly3pmpry4";
2021-09-30 21:26:25 +03:00
}).overrideAttrs (oA: {
patches = [
(fetchpatch {
url = "https://github.com/varnishcache/varnish-cache/commit/20e007a5b17c1f68f70ab42080de384f9e192900.patch";
sha256 = "0vvihbjknb0skdv2ksn2lz89pwmn4f2rjmb6q65cvgnnjfj46s82";
})
];
});
2013-04-01 03:24:56 +04:00
}