1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

dpdk: move apps to examples output

This commit is contained in:
Ruslan Babayev 2016-05-31 22:27:36 -07:00
parent 6a7f257e88
commit 9f3c0f9716

View file

@ -30,10 +30,10 @@ stdenv.mkDerivation rec {
installPhase = ''
mkdir $out
cp -pr x86_64-native-linuxapp-gcc/{app,lib,include,kmod} $out/
cp -pr x86_64-native-linuxapp-gcc/{lib,include,kmod} $out/
mkdir -p $examples/bin
find examples -type f -executable -exec cp {} $examples/bin \;
find examples ${RTE_TARGET}/app -type f -executable -exec cp {} $examples/bin \;
'';
meta = with stdenv.lib; {