mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
mapnik: use python2
because python3 is not yet supported.
This commit is contained in:
parent
bce69c9cec
commit
a805b1206d
@ -1,6 +1,6 @@
|
||||
{ stdenv, fetchzip
|
||||
, boost, cairo, freetype, gdal, harfbuzz, icu, libjpeg, libpng, libtiff
|
||||
, libwebp, libxml2, proj, python, scons, sqlite, zlib
|
||||
, libwebp, libxml2, proj, python2, scons, sqlite, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -16,11 +16,11 @@ stdenv.mkDerivation rec {
|
||||
# a distinct dev output makes python-mapnik fail
|
||||
outputs = [ "out" ];
|
||||
|
||||
nativeBuildInputs = [ python scons ];
|
||||
nativeBuildInputs = [ python2 scons ];
|
||||
|
||||
buildInputs =
|
||||
[ boost cairo freetype gdal harfbuzz icu libjpeg libpng libtiff
|
||||
libwebp libxml2 proj python sqlite zlib
|
||||
libwebp libxml2 proj python2 sqlite zlib
|
||||
];
|
||||
|
||||
configurePhase = ''
|
||||
|
Loading…
Reference in New Issue
Block a user