2021-07-26 03:33:27 +02:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook269, pkg-config, varnish, docutils, version, sha256 }:
|
2018-03-20 07:19:32 +01:00
|
|
|
|
2021-07-26 03:33:27 +02:00
|
|
|
stdenv.mkDerivation {
|
2021-07-25 23:53:02 +02:00
|
|
|
pname = "${varnish.name}-dynamic";
|
2021-07-26 03:33:27 +02:00
|
|
|
inherit version;
|
2018-03-20 07:19:32 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nigoroll";
|
|
|
|
repo = "libvmod-dynamic";
|
2019-11-03 00:07:47 +01:00
|
|
|
rev = "v${version}";
|
2021-07-26 03:33:27 +02:00
|
|
|
inherit sha256;
|
2018-03-20 07:19:32 +01:00
|
|
|
};
|
|
|
|
|
2021-02-25 01:35:17 +01:00
|
|
|
nativeBuildInputs = [ pkg-config docutils autoreconfHook269 varnish.python ];
|
2019-08-15 17:14:40 +02:00
|
|
|
buildInputs = [ varnish ];
|
2018-03-20 07:19:32 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile.am --replace "''${LIBVARNISHAPI_DATAROOTDIR}/aclocal" "${varnish.dev}/share/aclocal"
|
|
|
|
'';
|
|
|
|
configureFlags = [ "VMOD_DIR=$(out)/lib/varnish/vmods" ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-03-20 07:19:32 +01:00
|
|
|
description = "Dynamic director similar to the DNS director from Varnish 3";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/nigoroll/libvmod-dynamic";
|
2018-03-20 07:19:32 +01:00
|
|
|
inherit (varnish.meta) license platforms maintainers;
|
|
|
|
};
|
|
|
|
}
|