From b566f73f383c5a0e81a5655384ce27d2a85f667c Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 15 Dec 2015 19:14:00 +0100 Subject: [PATCH] linuxPackages.phc-intel: 0.4.0-rev{18 -> 19} Fixes #11733. Minimum Linux kernel version is now 4.3.x. --- pkgs/os-specific/linux/phc-intel/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/phc-intel/default.nix b/pkgs/os-specific/linux/phc-intel/default.nix index dd5a2741267b..c3c62dbf5eb5 100644 --- a/pkgs/os-specific/linux/phc-intel/default.nix +++ b/pkgs/os-specific/linux/phc-intel/default.nix @@ -2,20 +2,20 @@ assert stdenv.isLinux; # Don't bother with older versions, though some would probably work: -assert stdenv.lib.versionAtLeast kernel.version "4.2"; +assert stdenv.lib.versionAtLeast kernel.version "4.3"; # Disable on grsecurity kernels, which break module building: assert !kernel.features ? grsecurity; let release = "0.4.0"; - revbump = "rev18"; # don't forget to change forum download id... + revbump = "rev19"; # don't forget to change forum download id... version = "${release}-${revbump}"; in stdenv.mkDerivation { name = "linux-phc-intel-${version}-${kernel.version}"; src = fetchurl { - sha256 = "1480y75yid4nw7dhzm97yb10dykinzjz34abvavsrqpq7qclhv27"; - url = "http://www.linux-phc.org/forum/download/file.php?id=167"; + sha256 = "1apvjp2rpaf3acjvsxgk6xiwrx4n9p565gxvra05pvicwikfiqa8"; + url = "http://www.linux-phc.org/forum/download/file.php?id=168"; name = "phc-intel-pack-${revbump}.tar.bz2"; };