Skip to content

Commit

Permalink
Merge pull request #87234 from ehmry/staging
Browse files Browse the repository at this point in the history
gnu-config: 2019-04-15 -> 2020-05-04
  • Loading branch information
Ericson2314 committed Aug 3, 2020
2 parents 73cd1ef + f5ef00a commit c0b06ef
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
11 changes: 5 additions & 6 deletions pkgs/development/libraries/gnu-config/default.nix
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
{ stdenv, fetchurl }:

let
rev = "a8d79c3130da83c7cacd6fee31b9acc53799c406";
rev = "e78c96e5288993aaea3ec44e5c6ee755c668da79";

# Don't use fetchgit as this is needed during Aarch64 bootstrapping
configGuess = fetchurl {
url = "https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=${rev}";
sha256 = "0qbq49gr2cmf4gzrjvrmpwxxgzl3vap1xm902xa8pkcqdvriq0qw";
sha256 = "sha256-TSLpYIDGSp1flqCBi2Sgg9IWDV5bcO+Hn2Menv3R6KU=";
};
configSub = fetchurl {
url = "https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=${rev}";
sha256 = "0i699axqfkxk9mgv1hlms5r44pf0s642yz75ajjjpwzhw4d5pnv4";
sha256 = "sha256-DkCGDN/DE3phQ1GO/Ua5ZPPtp0Ya93PnW3yfSK8EV9s=";
};
in
stdenv.mkDerivation {
in stdenv.mkDerivation {
pname = "gnu-config";
version = "2019-04-15";
version = "2020-05-04";

buildCommand = ''
mkdir -p $out
Expand Down
3 changes: 2 additions & 1 deletion pkgs/stdenv/cross/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ in lib.init bootStages ++ [
(hostPlatform.isLinux && !buildPlatform.isLinux)
[ buildPackages.patchelf ]
++ lib.optional
(let f = p: !p.isx86 || builtins.elem p.libc [ "musl" "wasilibc" "relibc" ] || p.isiOS; in f hostPlatform && !(f buildPlatform))
(let f = p: !p.isx86 || builtins.elem p.libc [ "musl" "wasilibc" "relibc" ] || p.isiOS || p.isGenode;
in f hostPlatform && !(f buildPlatform) )
buildPackages.updateAutotoolsGnuConfigScriptsHook
# without proper `file` command, libtool sometimes fails
# to recognize 64-bit DLLs
Expand Down

0 comments on commit c0b06ef

Please sign in to comment.