mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
python: pass stdenv.glibc to crypt module to expose crypt.so
This commit is contained in:
parent
fef86de618
commit
d769b52307
2 changed files with 2 additions and 2 deletions
|
@ -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