summary refs log tree commit diff
path: root/pkgs/os-specific/linux/ixgbevf
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2017-08-28 18:42:01 -0400
committerTim Steinbach <tim@nequissimus.com>2017-08-29 07:17:38 -0400
commit40d05c1073e557d86d0bafd1a007c5eeec6f4a21 (patch)
tree969a52715d083faf1fd5ffda3214422226f66a63 /pkgs/os-specific/linux/ixgbevf
parent03b08fca66850dc01f988146d8c807d059f9c4af (diff)
downloadnixpkgs-40d05c1073e557d86d0bafd1a007c5eeec6f4a21.tar
nixpkgs-40d05c1073e557d86d0bafd1a007c5eeec6f4a21.tar.gz
nixpkgs-40d05c1073e557d86d0bafd1a007c5eeec6f4a21.tar.bz2
nixpkgs-40d05c1073e557d86d0bafd1a007c5eeec6f4a21.tar.lz
nixpkgs-40d05c1073e557d86d0bafd1a007c5eeec6f4a21.tar.xz
nixpkgs-40d05c1073e557d86d0bafd1a007c5eeec6f4a21.tar.zst
nixpkgs-40d05c1073e557d86d0bafd1a007c5eeec6f4a21.zip
ixgbevf: 4.1.2 -> 4.2.1
Diffstat (limited to 'pkgs/os-specific/linux/ixgbevf')
-rw-r--r--pkgs/os-specific/linux/ixgbevf/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/ixgbevf/default.nix b/pkgs/os-specific/linux/ixgbevf/default.nix
index 96dc0775cec..df4ef81adb8 100644
--- a/pkgs/os-specific/linux/ixgbevf/default.nix
+++ b/pkgs/os-specific/linux/ixgbevf/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   name = "ixgbevf-${version}-${kernel.version}";
-  version = "4.1.2";
+  version = "4.2.1";
 
   src = fetchurl {
     url = "mirror://sourceforge/e1000/ixgbevf-${version}.tar.gz";
-    sha256 = "1dismhiq0asf04rv6pv2sk2m3xcy6m3bpk16gmxqybca3xa28a5b";
+    sha256 = "1666hsavaspjmf45ij396mkndzk6g0n3ibr2glfdhjfqhfy35zb8";
   };
 
   hardeningDisable = [ "pic" ];
@@ -24,5 +24,6 @@ stdenv.mkDerivation rec {
     homepage = https://sourceforge.net/projects/e1000/files/ixgbevf%20stable/;
     license = stdenv.lib.licenses.gpl2;
     priority = 20;
+    broken = (stdenv.lib.versionOlder kernel.version "4.9");
   };
 }