apacheHttpdPackages.mod_mbtiles: init at 2022-05-25

This commit is contained in:
Nikolay Korotkiy 2022-06-04 02:38:17 +03:00
parent 6042a2221e
commit db3568499d
No known key found for this signature in database
GPG Key ID: D1DE6D7F693663A5
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,33 @@
{ lib, stdenv, fetchFromGitHub, apacheHttpd, sqlite }:
stdenv.mkDerivation rec {
pname = "mod_mbtiles";
version = "unstable-2022-05-25";
src = fetchFromGitHub {
owner = "systemed";
repo = pname;
rev = "f9d12a9581820630dd923c3c90aa8dcdcf65cb87";
sha256 = "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 = with lib; {
homepage = "https://github.com/systemed/mod_mbtiles";
description = "Serve tiles with Apache directly from an .mbtiles file";
license = licenses.free;
maintainers = with maintainers; [ sikmir ];
platforms = platforms.unix;
};
}

View File

@ -21573,6 +21573,8 @@ with pkgs;
mod_itk = callPackage ../servers/http/apache-modules/mod_itk { };
mod_mbtiles = callPackage ../servers/http/apache-modules/mod_mbtiles { };
php = pkgs.php.override { inherit apacheHttpd; };
subversion = pkgs.subversion.override { httpServer = true; inherit apacheHttpd; };