4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
35 lines
1,002 B
Nix
35 lines
1,002 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, apacheHttpd, apr, cairo, iniparser, mapnik }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mod_tile";
|
|
version = "unstable-2017-01-08";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "openstreetmap";
|
|
repo = "mod_tile";
|
|
rev = "e25bfdba1c1f2103c69529f1a30b22a14ce311f1";
|
|
sha256 = "12c96avka1dfb9wxqmjd57j30w9h8yx4y4w34kyq6xnf6lwnkcxp";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [ apacheHttpd apr cairo iniparser mapnik ];
|
|
|
|
configureFlags = [
|
|
"--with-apxs=${apacheHttpd.dev}/bin/apxs"
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/modules
|
|
make install-mod_tile DESTDIR=$out
|
|
mv $out${apacheHttpd}/* $out
|
|
rm -rf $out/nix
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/openstreetmap/mod_tile";
|
|
description = "Efficiently render and serve OpenStreetMap tiles using Apache and Mapnik";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ jglukasik ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|