diff options
| author | Alyssa Ross <hi@alyssa.is> | 2022-01-10 03:20:56 +0000 |
|---|---|---|
| committer | Alyssa Ross <hi@alyssa.is> | 2022-01-11 20:03:48 +0000 |
| commit | b0982488946246e859be5f89f73ee80a7f600bd1 (patch) | |
| tree | 5b24ab05c7477078522e7cdbddade43fddb61c94 | |
| parent | virtualbox: 6.1.28 -> 6.1.30 (diff) | |
| download | nixpkgs-b0982488946246e859be5f89f73ee80a7f600bd1.tar.gz | |
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.
(cherry picked from commit 2424687448b0e85aabe207c66e450427262d5eb8)
| -rw-r--r-- | pkgs/os-specific/linux/exfat/default.nix | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/exfat/default.nix b/pkgs/os-specific/linux/exfat/default.nix index 958bcdb9f16e..d459d2408442 100644 --- a/pkgs/os-specific/linux/exfat/default.nix +++ b/pkgs/os-specific/linux/exfat/default.nix @@ -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; }; } |
