libspatialite: builds on unix when libiconv is included
This commit is contained in:
parent
2ff10415bc
commit
d2151a50be
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, pkgconfig, libxml2, sqlite, zlib, proj, geos }:
|
||||
{ stdenv, fetchurl, pkgconfig, libxml2, sqlite, zlib, proj, geos, libiconv }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libspatialite-4.2.0";
|
||||
|
@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "0b9ipmp09y2ij7yajyjsh0zcwps8n5g88lzfzlkph33lail8l4wz";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig libxml2 sqlite zlib proj geos ];
|
||||
buildInputs = [ pkgconfig libxml2 sqlite zlib proj geos libiconv ];
|
||||
|
||||
configureFlags = "--disable-freexl";
|
||||
|
||||
|
@ -19,6 +19,6 @@ stdenv.mkDerivation rec {
|
|||
homepage = https://www.gaia-gis.it/fossil/libspatialite;
|
||||
# They allow any of these
|
||||
license = with licenses; [ gpl2Plus lgpl21Plus mpl11 ];
|
||||
platforms = platforms.linux;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue