Skip to content

Commit 8a07319

Browse files
committedMay 24, 2017
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.)
1 parent c05461f commit 8a07319

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed
 

‎pkgs/os-specific/linux/ixgbevf/default.nix

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
{ stdenv, fetchurl, kernel, kmod }:
22

3-
assert stdenv.lib.versionOlder kernel.version "4.10";
4-
53
stdenv.mkDerivation rec {
64
name = "ixgbevf-${version}-${kernel.version}";
7-
version = "4.0.3";
5+
version = "4.1.2";
86

97
src = fetchurl {
108
url = "mirror://sourceforge/e1000/ixgbevf-${version}.tar.gz";
11-
sha256 = "0f95p2d7yhf57qa6fl8nv1rb4x8vwwgh7qhqcqpag0hz19dc3xff";
9+
sha256 = "1dismhiq0asf04rv6pv2sk2m3xcy6m3bpk16gmxqybca3xa28a5b";
1210
};
1311

1412
hardeningDisable = [ "pic" ];

0 commit comments

Comments
 (0)
Please sign in to comment.