Advertisement
Guest User

Untitled

a guest
Jan 8th, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. (use-modules (guix packages)
  2. (guix download)
  3. (guix build-system meson)
  4. (guix licenses)
  5. (gnu packages linux))
  6.  
  7. (package
  8. (name "dpdk")
  9. (version "19.11")
  10. (source (origin
  11. (method url-fetch)
  12. (uri (string-append "https://fast.dpdk.org/rel/dpdk-" version
  13. ".tar.xz"))
  14. (sha256
  15. (base32
  16. "1aqjn6bm9miv3v2rbqi1rh1c19wa8nip9fvnqaqpnrs3i2b36wa6"))))
  17. (native-inputs `(("linux-header" ,linux-libre-headers)))
  18. (build-system meson-build-system)
  19. (arguments '(#:configure-flags '("-Dkernel_dir=")))
  20. (synopsis "DPDK")
  21. (description "Fancy DPDK package")
  22. (home-page "https://www.dpdk.org/")
  23. (license gpl3+))
  24.  
  25. i do not intent to bring this upstream, i am just playing
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement