summaryrefslogtreecommitdiff
path: root/pkgs/servers/http/apache-modules/mod_mbtiles/default.nix
blob: f2e68888fa0339de50020fdd23e874e5f8225f3e (plain)
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
32
33
34
35
36
37
38
39
40
41
42
{
  lib,
  stdenv,
  fetchFromGitHub,
  apacheHttpd,
  sqlite,
}:

stdenv.mkDerivation {
  pname = "mod_mbtiles";
  version = "unstable-2022-05-25";

  src = fetchFromGitHub {
    owner = "systemed";
    repo = "mod_mbtiles";
    rev = "f9d12a9581820630dd923c3c90aa8dcdcf65cb87";
    hash = "sha256-wOoLSNLgh0YXHUFn7WfUkQXpyWsgCrVZlMg55rvi9q4=";
  };

  buildInputs = [
    apacheHttpd
    sqlite
  ];

  buildPhase = ''
    apxs -lsqlite3 -ca mod_mbtiles.c
  '';

  installPhase = ''
    runHook preInstall
    install -D .libs/mod_mbtiles.so -t $out/modules
    runHook postInstall
  '';

  meta = {
    homepage = "https://github.com/systemed/mod_mbtiles";
    description = "Serve tiles with Apache directly from an .mbtiles file";
    license = lib.licenses.free;
    maintainers = with lib.maintainers; [ sikmir ];
    platforms = lib.platforms.unix;
  };
}