python35, python36: fix reading large files on darwin
This commit is contained in:
parent
893bf70a1c
commit
b8917dc0f3
|
@ -67,6 +67,12 @@ in stdenv.mkDerivation {
|
||||||
patches = [
|
patches = [
|
||||||
./no-ldconfig.patch
|
./no-ldconfig.patch
|
||||||
./ld_library_path.patch
|
./ld_library_path.patch
|
||||||
|
] ++ optionals stdenv.isDarwin [
|
||||||
|
# Fix for https://bugs.python.org/issue24658
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://bugs.python.org/file45178/issue24658-3-3.6.diff";
|
||||||
|
sha256 = "1x060hs80nl34mcl2ji2i7l4shxkmxwgq8h8lcmav8rjqqz1nb4a";
|
||||||
|
})
|
||||||
] ++ optionals (x11Support && stdenv.isDarwin) [
|
] ++ optionals (x11Support && stdenv.isDarwin) [
|
||||||
./use-correct-tcl-tk-on-darwin.patch
|
./use-correct-tcl-tk-on-darwin.patch
|
||||||
];
|
];
|
||||||
|
|
|
@ -69,6 +69,12 @@ in stdenv.mkDerivation {
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./no-ldconfig.patch
|
./no-ldconfig.patch
|
||||||
|
] ++ optionals stdenv.isDarwin [
|
||||||
|
# Fix for https://bugs.python.org/issue24658
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://bugs.python.org/file45178/issue24658-3-3.6.diff";
|
||||||
|
sha256 = "1x060hs80nl34mcl2ji2i7l4shxkmxwgq8h8lcmav8rjqqz1nb4a";
|
||||||
|
})
|
||||||
] ++ optionals (x11Support && stdenv.isDarwin) [
|
] ++ optionals (x11Support && stdenv.isDarwin) [
|
||||||
./use-correct-tcl-tk-on-darwin.patch
|
./use-correct-tcl-tk-on-darwin.patch
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue