summary refs log tree commit diff
path: root/pkgs/os-specific/linux/bpftrace
diff options
context:
space:
mode:
authorDominique Martinet <asmadeus@codewreck.org>2021-12-04 08:56:03 +0900
committerDominique Martinet <asmadeus@codewreck.org>2021-12-04 21:12:07 +0900
commit292cea941887d4a590beac48137f6a2914aae566 (patch)
tree066f3963daa579a0a5a4b2f63320757bfb21540a /pkgs/os-specific/linux/bpftrace
parent1ffe19f6d848e411050e4cbe20e61032d2879fe1 (diff)
downloadnixpkgs-292cea941887d4a590beac48137f6a2914aae566.tar
nixpkgs-292cea941887d4a590beac48137f6a2914aae566.tar.gz
nixpkgs-292cea941887d4a590beac48137f6a2914aae566.tar.bz2
nixpkgs-292cea941887d4a590beac48137f6a2914aae566.tar.lz
nixpkgs-292cea941887d4a590beac48137f6a2914aae566.tar.xz
nixpkgs-292cea941887d4a590beac48137f6a2914aae566.tar.zst
nixpkgs-292cea941887d4a590beac48137f6a2914aae566.zip
bpftrace: 0.13.0 -> 0.14.0
Diffstat (limited to 'pkgs/os-specific/linux/bpftrace')
-rw-r--r--pkgs/os-specific/linux/bpftrace/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/bpftrace/default.nix b/pkgs/os-specific/linux/bpftrace/default.nix
index f62ecc24b6a..e737a4f1f37 100644
--- a/pkgs/os-specific/linux/bpftrace/default.nix
+++ b/pkgs/os-specific/linux/bpftrace/default.nix
@@ -2,23 +2,25 @@
 , cmake, pkg-config, flex, bison
 , llvmPackages, elfutils
 , libelf, libbfd, libbpf, libopcodes, bcc
+, cereal, asciidoctor
 }:
 
 stdenv.mkDerivation rec {
   pname = "bpftrace";
-  version = "0.13.0";
+  version = "0.14.0";
 
   src = fetchFromGitHub {
     owner  = "iovisor";
     repo   = "bpftrace";
     rev    = "v${version}";
-    sha256 = "sha256-BKWBdFzj0j7rAfG30A0fwyYCpOG/5NFRPODW46EP1u0=";
+    sha256 = "sha256-rlaajNfpoiMtU/4aNAnbQ0VixPz9/302TZMarGzsb58=";
   };
 
   buildInputs = with llvmPackages;
     [ llvm libclang
       elfutils libelf bcc
       libbpf libbfd libopcodes
+      cereal asciidoctor
     ];
 
   nativeBuildInputs = [ cmake pkg-config flex bison llvmPackages.llvm.dev ];
@@ -45,6 +47,6 @@ stdenv.mkDerivation rec {
     description = "High-level tracing language for Linux eBPF";
     homepage    = "https://github.com/iovisor/bpftrace";
     license     = licenses.asl20;
-    maintainers = with maintainers; [ rvl thoughtpolice ];
+    maintainers = with maintainers; [ rvl thoughtpolice martinetd ];
   };
 }