Skip to content

Commit

Permalink
Merge pull request #45410 from alyssais/linuxPackages_4_18-broken
Browse files Browse the repository at this point in the history
Mark broken kernel modules on Linux 4.18
  • Loading branch information
Mic92 authored Aug 23, 2018
2 parents 9b3a001 + 54903b3 commit 5e9cbc1
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions pkgs/os-specific/linux/beegfs/kernel-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,6 @@ in stdenv.mkDerivation {
platforms = [ "i686-linux" "x86_64-linux" ];
license = licenses.gpl2;
maintainers = with maintainers; [ markuskowa ];
broken = stdenv.lib.versionAtLeast kernel.version "4.18";
};
}
1 change: 1 addition & 0 deletions pkgs/os-specific/linux/exfat/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,6 @@ stdenv.mkDerivation rec {
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ makefu ];
platforms = lib.platforms.linux;
broken = stdenv.lib.versionAtLeast kernel.version "4.18";
};
}
1 change: 1 addition & 0 deletions pkgs/os-specific/linux/phc-intel/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,6 @@ in stdenv.mkDerivation rec {
downloadPage = "http://www.linux-phc.org/forum/viewtopic.php?f=7&t=267";
license = licenses.gpl2;
platforms = [ "x86_64-linux" "i686-linux" ];
broken = stdenv.lib.versionAtLeast kernel.version "4.18";
};
}
1 change: 1 addition & 0 deletions pkgs/os-specific/linux/spl/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,6 @@ stdenv.mkDerivation rec {
platforms = platforms.linux;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ jcumming wizeman wkennington fpletz globin ];
broken = stdenv.lib.versionAtLeast kernel.version "4.18";
};
}
1 change: 1 addition & 0 deletions pkgs/os-specific/linux/tbs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,6 @@ in stdenv.mkDerivation {
license = licenses.gpl2;
maintainers = with maintainers; [ ck3d ];
priority = -1;
broken = stdenv.lib.versionAtLeast kernel.version "4.18";
};
}
3 changes: 2 additions & 1 deletion pkgs/servers/openafs/1.6/module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ in stdenv.mkDerivation rec {
license = licenses.ipl10;
platforms = platforms.linux;
maintainers = [ maintainers.z77z maintainers.spacefrogg ];
broken = versionOlder kernel.version "3.18";
broken = versionOlder kernel.version "3.18" ||
versionAtLeast kernel.version "4.18";
};

}
4 changes: 3 additions & 1 deletion pkgs/servers/openafs/1.8/module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ in stdenv.mkDerivation rec {
license = licenses.ipl10;
platforms = platforms.linux;
maintainers = [ maintainers.z77z maintainers.spacefrogg ];
broken = (versionOlder kernel.version "3.18") || stdenv.targetPlatform.isAarch64;
broken = (versionOlder kernel.version "3.18") ||
(versionAtLeast kernel.version "4.18") ||
stdenv.targetPlatform.isAarch64;
};

}

0 comments on commit 5e9cbc1

Please sign in to comment.