varnish4: init at 4.1.9; varnish6: init at 6.0.0

This commit is contained in:
volth
2018-03-20 07:10:36 +00:00
parent c79cc60e64
commit 002b460822
9 changed files with 137 additions and 54 deletions
+14 -7
View File
@@ -1,17 +1,24 @@
{ stdenv, fetchurl, pkgconfig, varnish, python, docutils, removeReferencesTo }:
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, varnish, python, docutils, removeReferencesTo }:
stdenv.mkDerivation rec {
version = "0.13.0";
name = "varnish-modules-${version}";
version = "0.14.0";
name = "${varnish.name}-modules-${version}";
src = fetchurl {
url = "https://download.varnish-software.com/varnish-modules/varnish-modules-${version}.tar.gz";
sha256 = "1nj52va7cp0swcv87zd3si80knpaa4a7na37cy9wkvgyvhf9k8mh";
src = fetchFromGitHub {
owner = "varnish";
repo = "varnish-modules";
rev = version;
sha256 = "17fkbr4i70qgdqsrx1x28ag20xkfyz1v3q3d3ywmv409aczqhm40";
};
nativeBuildInputs = [ pkgconfig docutils removeReferencesTo ];
nativeBuildInputs = [ pkgconfig autoreconfHook docutils removeReferencesTo ];
buildInputs = [ varnish python ];
postPatch = ''
substituteInPlace bootstrap --replace "''${dataroot}/aclocal" "${varnish.dev}/share/aclocal"
substituteInPlace Makefile.am --replace "''${LIBVARNISHAPI_DATAROOTDIR}/aclocal" "${varnish.dev}/share/aclocal"
'';
postInstall = "find $out -type f -exec remove-references-to -t ${varnish.dev} '{}' +"; # varnish.dev captured only as __FILE__ in assert messages
meta = with stdenv.lib; {