mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
linuxPackages.dpdk: fix build
This commit is contained in:
parent
4e75fd5ceb
commit
a56a9d1b59
@ -24,6 +24,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
mkdir $out
|
||||||
cp -pr x86_64-native-linuxapp-gcc/{app,lib,include,kmod} $out/
|
cp -pr x86_64-native-linuxapp-gcc/{app,lib,include,kmod} $out/
|
||||||
|
|
||||||
mkdir $examples
|
mkdir $examples
|
||||||
@ -34,7 +35,7 @@ stdenv.mkDerivation rec {
|
|||||||
description = "Set of libraries and drivers for fast packet processing";
|
description = "Set of libraries and drivers for fast packet processing";
|
||||||
homepage = http://dpdk.org/;
|
homepage = http://dpdk.org/;
|
||||||
license = with licenses; [ lgpl21 gpl2 bsd2 ];
|
license = with licenses; [ lgpl21 gpl2 bsd2 ];
|
||||||
platforms = platforms.linux;
|
platforms = [ "x86_64-linux" ];;
|
||||||
maintainers = [ maintainers.iElectric ];
|
maintainers = [ maintainers.iElectric ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user