2021-01-19 07:50:56 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, varnish, docutils, removeReferencesTo }:
|
2017-07-16 00:17:53 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-11-03 00:07:47 +01:00
|
|
|
version = "0.15.0";
|
2021-07-25 23:53:02 +02:00
|
|
|
pname = "${varnish.name}-modules";
|
2017-07-16 00:17:53 +02:00
|
|
|
|
2018-03-20 07:19:32 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "varnish";
|
|
|
|
repo = "varnish-modules";
|
|
|
|
rev = version;
|
2019-11-03 00:07:47 +01:00
|
|
|
sha256 = "00p9syl765lfg1d2ka7da6h46dfl388f8h36x9cmrjix95rg0yr8";
|
2017-07-16 00:17:53 +02:00
|
|
|
};
|
|
|
|
|
2019-08-15 17:14:40 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
docutils
|
2021-01-19 07:50:56 +01:00
|
|
|
pkg-config
|
2019-08-15 17:14:40 +02:00
|
|
|
removeReferencesTo
|
|
|
|
varnish.python # use same python version as varnish server
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [ varnish ];
|
2017-07-16 00:17:53 +02:00
|
|
|
|
2018-03-20 07:19:32 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace bootstrap --replace "''${dataroot}/aclocal" "${varnish.dev}/share/aclocal"
|
|
|
|
substituteInPlace Makefile.am --replace "''${LIBVARNISHAPI_DATAROOTDIR}/aclocal" "${varnish.dev}/share/aclocal"
|
|
|
|
'';
|
|
|
|
|
2017-11-26 12:51:29 +01:00
|
|
|
postInstall = "find $out -type f -exec remove-references-to -t ${varnish.dev} '{}' +"; # varnish.dev captured only as __FILE__ in assert messages
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-07-16 00:17:53 +02:00
|
|
|
description = "Collection of Varnish Cache modules (vmods) by Varnish Software";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/varnish/varnish-modules";
|
2017-07-16 00:17:53 +02:00
|
|
|
inherit (varnish.meta) license platforms maintainers;
|
|
|
|
};
|
|
|
|
}
|