summary refs log tree commit diff
path: root/pkgs/servers/varnish/geoip.nix
blob: 7816b27b14f7b3543720a52a3e18113c9e2cf1bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, fetchpatch, fetchFromGitHub, autoreconfHook, pkgconfig, varnish, geoip, docutils }:

stdenv.mkDerivation rec {
  version = "1.0.2";
  name = "varnish-geoip-${version}";

  src = fetchFromGitHub {
    owner = "varnish";
    repo = "libvmod-geoip";
    rev = "libvmod-geoip-${version}";
    sha256 = "1gmadayqh3dais14c4skvd47w8h4kyifg7kcw034i0777z5hfpyn";
  };

  patches = [
    # IPv6 support
    (fetchpatch {
      url = https://github.com/volth/libvmod-geoip-1/commit/0966fe8.patch;
      sha256 = "053im8h2y8qzs37g95ksr00sf625p23r5ps1j0a2h4lfg70vf4ry";
    })
  ];

  nativeBuildInputs = [ autoreconfHook pkgconfig docutils ];
  buildInputs = [ varnish geoip ];
  configureFlags = [ "VMOD_DIR=$(out)/lib/varnish/vmods" ];

  meta = with stdenv.lib; {
    description = "GeoIP Varnish module by Varnish Software";
    homepage = https://github.com/varnish/libvmod-geoip;
    inherit (varnish.meta) license platforms maintainers;
  };
}