mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
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
This commit is contained in:
parent
cebc13529a
commit
030f40a6a2
@ -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
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user