0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

dpdk: 16.04 -> 16.07, fix build against linux 4.7 (#18256)

Tested build against linux_latest and linux_grsec_nixos.

(cherry picked from commit f8b447a6e4)
See https://github.com/NixOS/nixpkgs/issues/18209
This commit is contained in:
Joachim F 2016-09-03 17:40:27 +02:00 committed by Joachim Fasting
parent 7fd851f613
commit a86f2170e4
No known key found for this signature in database
GPG key ID: 7544761007FE4E08

View file

@ -4,11 +4,11 @@ assert lib.versionAtLeast kernel.version "3.18";
stdenv.mkDerivation rec {
name = "dpdk-${version}-${kernel.version}";
version = "16.04";
version = "16.07";
src = fetchurl {
url = "http://dpdk.org/browse/dpdk/snapshot/dpdk-${version}.tar.gz";
sha256 = "0yrz3nnhv65v2jzz726bjswkn8ffqc1sr699qypc9m78qrdljcfn";
sha256 = "1sgh55w3xpc0lb70s74cbyryxdjijk1fbv9b25jy8ms3lxaj966c";
};
buildInputs = [ pkgconfig libvirt ];