diff options
author | Marius Bakke <marius@gnu.org> | 2022-08-09 15:58:40 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-08-10 00:29:00 +0200 |
commit | 00962dd18f21270daaaf9a5b7c7cc995d8f6402f (patch) | |
tree | 6ef917cfd3b69a8ab615a61c5f890919dbee1d0f | |
parent | 2fd9ca5e05cc6008d36b08a002d3f30d824140ce (diff) | |
download | guix-00962dd18f21270daaaf9a5b7c7cc995d8f6402f.tar.gz |
gnu: bpftrace: Update to 0.15.0.
* gnu/packages/linux.scm (bpftrace): Update to 0.15.0. [inputs]: Add CEREAL.
-rw-r--r-- | gnu/packages/linux.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 1dc8b492ff..7f909e863e 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -9040,7 +9040,7 @@ and above.") (define-public bpftrace (package (name "bpftrace") - (version "0.11.4") + (version "0.15.0") (source (origin (method git-fetch) @@ -9049,13 +9049,13 @@ and above.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0y4qgm2cpccrsm20rnh92hqplddqsc5q5zhw9nqn2igm3h9i0z7h")) + (base32 "022fg0kiz0liahj82wvlxmivkwyp86shs5fwr2v4blx7lh05k9zm")) (patches (search-patches "bpftrace-disable-bfd-disasm.patch")))) (build-system cmake-build-system) (native-inputs (list bison flex)) (inputs - (list bcc clang-toolchain-9 elfutils libbpf)) + (list bcc clang-toolchain-9 elfutils libbpf cereal)) (arguments `(#:tests? #f ;Tests require googletest sources. #:configure-flags |