xfce.xfce4-notes-plugin: Generate C code with newer Vala (#359006)
[NixPkgs.git] / pkgs / servers / varnish / dynamic.nix
blob78fd4d1064129269bfc37594f2708ac65c785dc7
1 { lib, stdenv, fetchFromGitHub, autoreconfHook269, pkg-config, varnish, docutils, version, sha256 }:
3 stdenv.mkDerivation {
4   pname = "${varnish.name}-dynamic";
5   inherit version;
7   src = fetchFromGitHub {
8     owner = "nigoroll";
9     repo = "libvmod-dynamic";
10     rev = "v${version}";
11     inherit sha256;
12   };
14   nativeBuildInputs = [ pkg-config docutils autoreconfHook269 varnish.python ];
15   buildInputs = [ varnish ];
16   postPatch = ''
17     substituteInPlace Makefile.am --replace "''${LIBVARNISHAPI_DATAROOTDIR}/aclocal" "${varnish.dev}/share/aclocal"
18   '';
19   configureFlags = [ "VMOD_DIR=$(out)/lib/varnish/vmods" ];
21   meta = with lib; {
22     description = "Dynamic director similar to the DNS director from Varnish 3";
23     homepage = "https://github.com/nigoroll/libvmod-dynamic";
24     inherit (varnish.meta) license platforms maintainers;
25   };