mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
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 {
|
||||
moduleName = "crypt";
|
||||
internalName = "crypt";
|
||||
deps = [ ];
|
||||
deps = [ stdenv.glibc ];
|
||||
};
|
||||
|
||||
curses = buildInternalPythonModule {
|
||||
|
|
|
@ -196,7 +196,7 @@ let
|
|||
crypt = buildInternalPythonModule {
|
||||
moduleName = "crypt";
|
||||
internalName = "crypt";
|
||||
deps = [ ];
|
||||
deps = [ stdenv.glibc ];
|
||||
};
|
||||
|
||||
gdbm = buildInternalPythonModule {
|
||||
|
|
Loading…
Reference in a new issue