From 2424687448b0e85aabe207c66e450427262d5eb8 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Mon, 10 Jan 2022 03:20:56 +0000 Subject: [PATCH] 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. --- pkgs/os-specific/linux/exfat/default.nix | 5 +---- 1 file changed, 1 insertion(+), 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; }; }