fix eval
This commit is contained in:
parent
f5edc27298
commit
3dc204f42e
@ -169,7 +169,7 @@ let
|
|||||||
crypt = buildInternalPythonModule {
|
crypt = buildInternalPythonModule {
|
||||||
moduleName = "crypt";
|
moduleName = "crypt";
|
||||||
internalName = "crypt";
|
internalName = "crypt";
|
||||||
deps = [ stdenv.glibc ];
|
deps = optional (stdenv ? glibc) stdenv.glibc;
|
||||||
};
|
};
|
||||||
|
|
||||||
curses = buildInternalPythonModule {
|
curses = buildInternalPythonModule {
|
||||||
|
@ -196,7 +196,7 @@ let
|
|||||||
crypt = buildInternalPythonModule {
|
crypt = buildInternalPythonModule {
|
||||||
moduleName = "crypt";
|
moduleName = "crypt";
|
||||||
internalName = "crypt";
|
internalName = "crypt";
|
||||||
deps = [ stdenv.glibc ];
|
deps = optional (stdenv ? glibc) stdenv.glibc;
|
||||||
};
|
};
|
||||||
|
|
||||||
gdbm = buildInternalPythonModule {
|
gdbm = buildInternalPythonModule {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user