summary refs log tree commit diff
path: root/pkgs/os-specific/linux/ixgbevf
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2017-05-24 14:47:01 +0200
committerEelco Dolstra <edolstra@gmail.com>2017-05-24 14:51:39 +0200
commit8a07319e7fb086f9c6cbd47602773f10f3eb49fa (patch)
treef8efe5af6ad0dde028fd3a5a6cc86106cfc1e946 /pkgs/os-specific/linux/ixgbevf
parentc05461fde6968588e94c05c610f76518f93d31e4 (diff)
downloadnixpkgs-8a07319e7fb086f9c6cbd47602773f10f3eb49fa.tar
nixpkgs-8a07319e7fb086f9c6cbd47602773f10f3eb49fa.tar.gz
nixpkgs-8a07319e7fb086f9c6cbd47602773f10f3eb49fa.tar.bz2
nixpkgs-8a07319e7fb086f9c6cbd47602773f10f3eb49fa.tar.lz
nixpkgs-8a07319e7fb086f9c6cbd47602773f10f3eb49fa.tar.xz
nixpkgs-8a07319e7fb086f9c6cbd47602773f10f3eb49fa.tar.zst
nixpkgs-8a07319e7fb086f9c6cbd47602773f10f3eb49fa.zip
ixgbevf: 4.0.3 -> 4.1.2
This fixes

  error: assertion failed at /home/eelco/Dev/nixpkgs-stable/pkgs/os-specific/linux/ixgbevf/default.nix:3:1
  (use ‘--show-trace’ to show detailed location information)

deploying a >=4.10 kernel to EC2. (We could probably also drop the
ixgbevf package with recent kernels, since the ixgbevf module included
in the kernel source tree is recent enough according to Amazon's
recommendation.)
Diffstat (limited to 'pkgs/os-specific/linux/ixgbevf')
-rw-r--r--pkgs/os-specific/linux/ixgbevf/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/ixgbevf/default.nix b/pkgs/os-specific/linux/ixgbevf/default.nix
index 1dbc5c74415..96dc0775cec 100644
--- a/pkgs/os-specific/linux/ixgbevf/default.nix
+++ b/pkgs/os-specific/linux/ixgbevf/default.nix
@@ -1,14 +1,12 @@
 { stdenv, fetchurl, kernel, kmod }:
 
-assert stdenv.lib.versionOlder kernel.version "4.10";
-
 stdenv.mkDerivation rec {
   name = "ixgbevf-${version}-${kernel.version}";
-  version = "4.0.3";
+  version = "4.1.2";
 
   src = fetchurl {
     url = "mirror://sourceforge/e1000/ixgbevf-${version}.tar.gz";
-    sha256 = "0f95p2d7yhf57qa6fl8nv1rb4x8vwwgh7qhqcqpag0hz19dc3xff";
+    sha256 = "1dismhiq0asf04rv6pv2sk2m3xcy6m3bpk16gmxqybca3xa28a5b";
   };
 
   hardeningDisable = [ "pic" ];