summary refs log tree commit diff
path: root/pkgs/os-specific/linux/uclibc
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-11-13 06:21:28 -0800
committerRenaud <c0bw3b@users.noreply.github.com>2019-11-13 15:21:28 +0100
commit030f40a6a220e5256a07b70d53ee7458ea780fef (patch)
tree611338bfd4c59a06a5e09259b2348e63a07074ee /pkgs/os-specific/linux/uclibc
parentcebc13529a46239ffa258aa012723f3520858abf (diff)
downloadnixpkgs-030f40a6a220e5256a07b70d53ee7458ea780fef.tar
nixpkgs-030f40a6a220e5256a07b70d53ee7458ea780fef.tar.gz
nixpkgs-030f40a6a220e5256a07b70d53ee7458ea780fef.tar.bz2
nixpkgs-030f40a6a220e5256a07b70d53ee7458ea780fef.tar.lz
nixpkgs-030f40a6a220e5256a07b70d53ee7458ea780fef.tar.xz
nixpkgs-030f40a6a220e5256a07b70d53ee7458ea780fef.tar.zst
nixpkgs-030f40a6a220e5256a07b70d53ee7458ea780fef.zip
uclibc: 1.0.31 -> 1.0.32
* uclibc: 1.0.31 -> 1.0.32 (#72684)

* uclibc: restrict to x86 Linux platforms
It was always failing on Hydra ARM builders
Diffstat (limited to 'pkgs/os-specific/linux/uclibc')
-rw-r--r--pkgs/os-specific/linux/uclibc/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/uclibc/default.nix b/pkgs/os-specific/linux/uclibc/default.nix
index c07e063caa7..5f401411074 100644
--- a/pkgs/os-specific/linux/uclibc/default.nix
+++ b/pkgs/os-specific/linux/uclibc/default.nix
@@ -48,7 +48,7 @@ let
     UCLIBC_HAS_FPU n
   '';
 
-  version = "1.0.31";
+  version = "1.0.32";
 in
 
 stdenv.mkDerivation {
@@ -58,7 +58,7 @@ stdenv.mkDerivation {
   src = fetchurl {
     url = "https://downloads.uclibc-ng.org/releases/${version}/uClibc-ng-${version}.tar.bz2";
     # from "${url}.sha256";
-    sha256 = "0ba9yh7ir1jamrgc9x9v7zw0sw144f78q4vidiz6ynpr4dwbd5qm";
+    sha256 = "0cp4xf3k0ib76xaz6n6i7yybw7s92s607ak8svq1kakwk0d1jjbv";
   };
 
   # 'ftw' needed to build acl, a coreutils dependency
@@ -109,6 +109,6 @@ stdenv.mkDerivation {
     description = "A small implementation of the C library";
     maintainers = with maintainers; [ rasendubi ];
     license = licenses.lgpl2;
-    platforms = platforms.linux;
+    platforms = intersectLists platforms.linux platforms.x86; # fails to build on ARM
   };
 }