Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

mapnik: use provided configure script

This gives us support for the class autoconf “./configure && make &&
make install” build-style.

+2 -2
+2 -2
pkgs/development/libraries/mapnik/default.nix
··· 19 # a distinct dev output makes python-mapnik fail 20 outputs = [ "out" ]; 21 22 - nativeBuildInputs = [ python scons ]; 23 24 buildInputs = 25 [ boost cairo freetype gdal harfbuzz icu libjpeg libpng libtiff ··· 31 32 prefixKey = "PREFIX="; 33 34 - sconsFlags = [ 35 "BOOST_INCLUDES=${boost.dev}/include" 36 "BOOST_LIBS=${boost.out}/lib" 37 "CAIRO_INCLUDES=${cairo.dev}/include"
··· 19 # a distinct dev output makes python-mapnik fail 20 outputs = [ "out" ]; 21 22 + nativeBuildInputs = [ python ]; 23 24 buildInputs = 25 [ boost cairo freetype gdal harfbuzz icu libjpeg libpng libtiff ··· 31 32 prefixKey = "PREFIX="; 33 34 + configureFlags = [ 35 "BOOST_INCLUDES=${boost.dev}/include" 36 "BOOST_LIBS=${boost.out}/lib" 37 "CAIRO_INCLUDES=${cairo.dev}/include"