-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path144748.patch
More file actions
35 lines (35 loc) · 1.3 KB
/
144748.patch
File metadata and controls
35 lines (35 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index f3c331d76a5f..c7caf510eda2 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -575,14 +575,18 @@ with pkgs;
openssl = buildPackages.openssl.override {
fetchurl = stdenv.fetchurlBoot;
buildPackages = {
- coreutils = buildPackages.coreutils.override {
+ coreutils = (buildPackages.coreutils.override rec {
fetchurl = stdenv.fetchurlBoot;
inherit perl;
xz = buildPackages.xz.override { fetchurl = stdenv.fetchurlBoot; };
gmpSupport = false;
aclSupport = false;
attrSupport = false;
- };
+ autoreconfHook = null;
+ texinfo = null;
+ }).overrideAttrs (_: {
+ prebuild = "touch Makefile.in"; #avoid automake
+ });
inherit perl;
};
inherit perl;
@@ -10088,6 +10092,9 @@ with pkgs;
perl = buildPackages.perl.override {
enableCrypt = false;
fetchurl = stdenv.fetchurlBoot;
+ zlib = buildPackages.zlib.override {
+ fetchurl = stdenv.fetchurlBoot;
+ };
};
};
libxcrypt-legacy = libxcrypt.override { enableHashes = "all"; };