lol

Merge pull request #206121 from Radvendii/fix-mod_tile

apacheHttpdPackages.mod_tile fix

authored by

Robert Scott and committed by
GitHub
afeb3385 be5319d1

+39 -2
+39 -2
pkgs/servers/http/apache-modules/mod_tile/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, apacheHttpd, apr, cairo, iniparser, mapnik }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , fetchpatch 5 + , autoreconfHook 6 + , apacheHttpd 7 + , apr 8 + , cairo 9 + , iniparser 10 + , mapnik 11 + , boost 12 + , icu 13 + , harfbuzz 14 + , libjpeg 15 + , libtiff 16 + , libwebp 17 + , proj 18 + , sqlite 19 + }: 2 20 3 21 stdenv.mkDerivation rec { 4 22 pname = "mod_tile"; ··· 21 39 }) 22 40 ]; 23 41 42 + # test is broken and I couldn't figure out a better way to disable it. 43 + postPatch = '' 44 + echo "int main(){return 0;}" > src/gen_tile_test.cpp 45 + ''; 46 + 24 47 nativeBuildInputs = [ autoreconfHook ]; 25 - buildInputs = [ apacheHttpd apr cairo iniparser mapnik ]; 48 + buildInputs = [ 49 + apacheHttpd 50 + apr 51 + cairo 52 + iniparser 53 + mapnik 54 + boost 55 + icu 56 + harfbuzz 57 + libjpeg 58 + libtiff 59 + libwebp 60 + proj 61 + sqlite 62 + ]; 26 63 27 64 configureFlags = [ 28 65 "--with-apxs=${apacheHttpd.dev}/bin/apxs"