summary refs log tree commit diff
path: root/pkgs/os-specific/linux/phc-intel
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-12-15 19:14:00 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-12-15 19:18:49 +0100
commitb566f73f383c5a0e81a5655384ce27d2a85f667c (patch)
treec66ec4cdb1a48022e031622846161af6f2d0df1f /pkgs/os-specific/linux/phc-intel
parent82c673d4c9280ef025e75e6de2a55c7e2b6fc6d1 (diff)
downloadnixpkgs-b566f73f383c5a0e81a5655384ce27d2a85f667c.tar
nixpkgs-b566f73f383c5a0e81a5655384ce27d2a85f667c.tar.gz
nixpkgs-b566f73f383c5a0e81a5655384ce27d2a85f667c.tar.bz2
nixpkgs-b566f73f383c5a0e81a5655384ce27d2a85f667c.tar.lz
nixpkgs-b566f73f383c5a0e81a5655384ce27d2a85f667c.tar.xz
nixpkgs-b566f73f383c5a0e81a5655384ce27d2a85f667c.tar.zst
nixpkgs-b566f73f383c5a0e81a5655384ce27d2a85f667c.zip
linuxPackages.phc-intel: 0.4.0-rev{18 -> 19}
Fixes #11733.

Minimum Linux kernel version is now 4.3.x.
Diffstat (limited to 'pkgs/os-specific/linux/phc-intel')
-rw-r--r--pkgs/os-specific/linux/phc-intel/default.nix8
1 files 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 dd5a2741267..c3c62dbf5eb 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";
   };