python: pass stdenv.glibc to crypt module to expose crypt.so
This commit is contained in:
parent
fef86de618
commit
d769b52307
@ -169,7 +169,7 @@ let
|
|||||||
crypt = buildInternalPythonModule {
|
crypt = buildInternalPythonModule {
|
||||||
moduleName = "crypt";
|
moduleName = "crypt";
|
||||||
internalName = "crypt";
|
internalName = "crypt";
|
||||||
deps = [ ];
|
deps = [ stdenv.glibc ];
|
||||||
};
|
};
|
||||||
|
|
||||||
curses = buildInternalPythonModule {
|
curses = buildInternalPythonModule {
|
||||||
|
@ -196,7 +196,7 @@ let
|
|||||||
crypt = buildInternalPythonModule {
|
crypt = buildInternalPythonModule {
|
||||||
moduleName = "crypt";
|
moduleName = "crypt";
|
||||||
internalName = "crypt";
|
internalName = "crypt";
|
||||||
deps = [ ];
|
deps = [ stdenv.glibc ];
|
||||||
};
|
};
|
||||||
|
|
||||||
gdbm = buildInternalPythonModule {
|
gdbm = buildInternalPythonModule {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user