summary refs log tree commit diff
path: root/pkgs/os-specific/linux/libbpf
diff options
context:
space:
mode:
authorSascha Grunert <sgrunert@redhat.com>2021-12-02 09:28:23 +0100
committerSascha Grunert <sgrunert@redhat.com>2021-12-02 09:28:23 +0100
commit089fdb8dfaa3070b37c66fcf5b1445f343255a05 (patch)
treeaa0435af72857ae368a51d20cb979d2ac4775f02 /pkgs/os-specific/linux/libbpf
parent56cbe42f1668338d05febfbb866e32f2c865609a (diff)
downloadnixpkgs-089fdb8dfaa3070b37c66fcf5b1445f343255a05.tar
nixpkgs-089fdb8dfaa3070b37c66fcf5b1445f343255a05.tar.gz
nixpkgs-089fdb8dfaa3070b37c66fcf5b1445f343255a05.tar.bz2
nixpkgs-089fdb8dfaa3070b37c66fcf5b1445f343255a05.tar.lz
nixpkgs-089fdb8dfaa3070b37c66fcf5b1445f343255a05.tar.xz
nixpkgs-089fdb8dfaa3070b37c66fcf5b1445f343255a05.tar.zst
nixpkgs-089fdb8dfaa3070b37c66fcf5b1445f343255a05.zip
libbpf: 0.5.0 -> 0.6.0
Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
Diffstat (limited to 'pkgs/os-specific/linux/libbpf')
-rw-r--r--pkgs/os-specific/linux/libbpf/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/libbpf/default.nix b/pkgs/os-specific/linux/libbpf/default.nix
index f2ebcbdcc1c..5debfd2ef2c 100644
--- a/pkgs/os-specific/linux/libbpf/default.nix
+++ b/pkgs/os-specific/linux/libbpf/default.nix
@@ -7,13 +7,13 @@ with builtins;
 
 stdenv.mkDerivation rec {
   pname = "libbpf";
-  version = "0.5.0";
+  version = "0.6.0";
 
   src = fetchFromGitHub {
     owner  = "libbpf";
     repo   = "libbpf";
     rev    = "v${version}";
-    sha256 = "sha256-L23Ba+slJW/ALj8AepwByrrHgYMY5/Jh+AoD0p4qryI=";
+    sha256 = "sha256-p9wUDC7r6+ElbheNkTkZW4eMNAvPbvpUyQjTjCE34ck=";
   };
 
   nativeBuildInputs = [ pkg-config ];
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
     description = "Upstream mirror of libbpf";
     homepage    = "https://github.com/libbpf/libbpf";
     license     = with licenses; [ lgpl21 /* or */ bsd2 ];
-    maintainers = with maintainers; [ thoughtpolice vcunat ];
+    maintainers = with maintainers; [ thoughtpolice vcunat saschagrunert ];
     platforms   = platforms.linux;
   };
 }