cygwin: python27 gdbm module needs gettext
This commit is contained in:
parent
0860826795
commit
617c16f8f6
1 changed files with 3 additions and 3 deletions
|
@ -1,11 +1,11 @@
|
||||||
{ stdenv, fetchurl, self, callPackage
|
{ stdenv, fetchurl, self, callPackage
|
||||||
, bzip2, openssl
|
, bzip2, openssl, gettext
|
||||||
|
|
||||||
, includeModules ? false
|
, includeModules ? false
|
||||||
|
|
||||||
, db, gdbm, ncurses, sqlite, readline
|
, db, gdbm, ncurses, sqlite, readline
|
||||||
|
|
||||||
, tcl ? null, tk ? null, x11 ? null, libX11 ? null, x11Support ? true
|
, tcl ? null, tk ? null, x11 ? null, libX11 ? null, x11Support ? !stdenv.isCygwin
|
||||||
, zlib ? null, zlibSupport ? true
|
, zlib ? null, zlibSupport ? true
|
||||||
, expat, libffi
|
, expat, libffi
|
||||||
}:
|
}:
|
||||||
|
@ -224,7 +224,7 @@ let
|
||||||
gdbm = buildInternalPythonModule {
|
gdbm = buildInternalPythonModule {
|
||||||
moduleName = "gdbm";
|
moduleName = "gdbm";
|
||||||
internalName = "gdbm";
|
internalName = "gdbm";
|
||||||
deps = [ gdbm ];
|
deps = [ gdbm ] ++ stdenv.lib.optional stdenv.isCygwin gettext;
|
||||||
};
|
};
|
||||||
|
|
||||||
sqlite3 = buildInternalPythonModule {
|
sqlite3 = buildInternalPythonModule {
|
||||||
|
|
Loading…
Reference in a new issue