libbpf: 0.0.3pre114 -> 0.0.7

Fixes #82153
This commit is contained in:
Orivej Desh 2020-03-09 22:53:53 +00:00
parent 6301e0af06
commit 1aeaf9387a

View File

@ -1,22 +1,22 @@
{ stdenv, fetchFromGitHub, pkgconfig
, libelf
, libelf, zlib
}:
with builtins;
stdenv.mkDerivation rec {
pname = "libbpf";
version = "0.0.3pre114_${substring 0 7 src.rev}";
version = "0.0.7";
src = fetchFromGitHub {
owner = "libbpf";
repo = "libbpf";
rev = "672ae75b66fd8780a4214fe7b116c427e0809a52";
sha256 = "1bdw1hc4m95irmybqlwax85b6m856g07p2slcw8b7jw3k4j9x075";
rev = "v${version}";
sha256 = "1jcqhqvfbnbijm4jn949ibw1qywai9rwhyijf6lg8cvnyxkib2bs";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libelf ];
buildInputs = [ libelf zlib ];
sourceRoot = "source/src";
enableParallelBuilding = true;