mapnik: 3.0.10 -> 3.0.12

This commit is contained in:
Christoph Hrdinka 2016-09-27 15:17:28 +02:00
parent 74434e4ab1
commit 24d2ddfb1d
No known key found for this signature in database
GPG Key ID: 920377791C167EF1

View File

@ -1,18 +1,20 @@
{ stdenv, fetchurl { stdenv, fetchzip
, boost, cairo, freetype, gdal, harfbuzz, icu, libjpeg, libpng, libtiff , boost, cairo, freetype, gdal, harfbuzz, icu, libjpeg, libpng, libtiff
, libwebp, libxml2, proj, python, scons, sqlite, zlib , libwebp, libxml2, proj, python, scons, sqlite, zlib
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "mapnik-${version}"; name = "mapnik-${version}";
version = "3.0.10"; version = "3.0.12";
src = fetchurl { src = fetchzip {
url = "https://mapnik.s3.amazonaws.com/dist/v${version}/mapnik-v${version}.tar.bz2"; # this one contains all git submodules and is cheaper than fetchgit
sha256 = "0fda6syrfb81930sf7rgw1qmpnik8k1ngrjkh43ywd3s37nbqh1n"; url = "https://github.com/mapnik/mapnik/releases/download/v${version}/mapnik-v${version}.tar.bz2";
sha256 = "02w360fxk0pfkk0zbwc134jq7rkkib58scs5k67j8np6fx6gag6i";
}; };
outputs = [ "out" "dev" ]; # a distinct dev output makes python-mapnik fail
outputs = [ "out" ];
nativeBuildInputs = [ python scons ]; nativeBuildInputs = [ python scons ];