linuxPackages.exfat-nofuse: assert -> meta.broken

We don't need to check versions any more, because we no longer package
any kernels older than 4.4, so this is broken for all kernel versions
in Nixpkgs.
This commit is contained in:
Alyssa Ross 2022-01-10 03:20:56 +00:00
parent 7101e0da0e
commit 2424687448
No known key found for this signature in database
GPG Key ID: F9DBED4859B271C0

View File

@ -1,9 +1,5 @@
{ stdenv, lib, fetchFromGitHub, fetchpatch, kernel }:
# Upstream build for kernel 4.1 is broken, 3.12 and below seems to be working
assert lib.versionAtLeast kernel.version "4.2" || lib.versionOlder kernel.version "4.0";
stdenv.mkDerivation rec {
# linux kernel above 5.7 comes with its own exfat implementation https://github.com/arter97/exfat-linux/issues/27
# Assertion moved here due to some tests unintenionally triggering it,
@ -41,5 +37,6 @@ stdenv.mkDerivation rec {
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ makefu ];
platforms = lib.platforms.linux;
broken = true;
};
}