summary refs log tree commit diff
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2021-10-31 14:04:43 +0100
committerMaximilian Bosch <maximilian@mbosch.me>2022-02-27 10:26:52 +0100
commit518865059a1818895575c9f82e7677d94f958957 (patch)
tree003adf23d9de429018517605ade1378fe4aa6e2e
parentda905d4cf918e28f924bab99c6f2a4012d55410d (diff)
downloadnixpkgs-518865059a1818895575c9f82e7677d94f958957.tar
nixpkgs-518865059a1818895575c9f82e7677d94f958957.tar.gz
nixpkgs-518865059a1818895575c9f82e7677d94f958957.tar.bz2
nixpkgs-518865059a1818895575c9f82e7677d94f958957.tar.lz
nixpkgs-518865059a1818895575c9f82e7677d94f958957.tar.xz
nixpkgs-518865059a1818895575c9f82e7677d94f958957.tar.zst
nixpkgs-518865059a1818895575c9f82e7677d94f958957.zip
libowfat: mark as broken
Failing Hydra build: https://hydra.nixos.org/build/156248131

This doesn't build with `glibc-2.34`, however there's already an
upstream fix and can be marked as unbroken as soon as it's available[1].

I tried to apply the patch from a Git mirror[2], however this doesn't
apply properly on `0.32` and I decided to wait for a release - such as
Gentoo does it - instead.

[1] https://bugs.gentoo.org/806505
[2] https://git.lighttpd.net/mirrors/libowfat/commit/a10f89d5f3fbe58e8233cc755b599d1d07c63e44
-rw-r--r--pkgs/development/libraries/libowfat/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libowfat/default.nix b/pkgs/development/libraries/libowfat/default.nix
index 9db1354677d..665121b58b5 100644
--- a/pkgs/development/libraries/libowfat/default.nix
+++ b/pkgs/development/libraries/libowfat/default.nix
@@ -17,5 +17,8 @@ stdenv.mkDerivation rec {
     homepage = "https://www.fefe.de/libowfat/";
     license = licenses.gpl2;
     platforms = platforms.linux;
+    # Doesn't build with glibc 2.34: https://hydra.nixos.org/build/156248131
+    # Should be fixed with the next release: https://bugs.gentoo.org/806505
+    broken = true;
   };
 }