me
/
guix
Archived
1
0
Fork 0

gnu: libbpf: Reintroduce 0.8.1.

This version was removed in 12d2a6e5a6.

* gnu/packages/linux.scm (libbpf-0.8): New variable.

Change-Id: I99a323667ce86671caf3fc0227379fbba073c0a1
master
Ludovic Courtès 2024-06-02 20:28:20 +02:00
parent c9f00f04c6
commit 5245e081fc
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 30 additions and 0 deletions

View File

@ -10018,6 +10018,36 @@ contrast to BCC, do not require the Clang/LLVM runtime or linux kernel
headers.")
(license (list license:lgpl2.1 license:bsd-2))))
(define-public libbpf-0.8
(package
(inherit libbpf)
(name "libbpf")
(version "0.8.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/libbpf/libbpf")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1zzpkk4x3f20483dzw43b3ml03d63vvkmqf4j8y3b61b67wm59bm"))))
(arguments
(list
#:tests? #f ;self-tests run in QEMU
#:make-flags
#~(list (string-append "PREFIX=" #$output)
(string-append "LIBDIR=$(PREFIX)/lib")
(string-append "CC=" #$(cc-for-target)))
#:phases #~(modify-phases %standard-phases
(delete 'configure)
(add-before 'build 'pre-build
(lambda _
(chdir "src"))))))
(native-inputs (list pkg-config))
(propagated-inputs (list elfutils zlib)))) ;in Requires.private of libbpf.pc
(define-public bcc
(package
(name "bcc")