mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-07 14:23:19 +00:00
690125bd0a
These are now redirects, and no longer git clone-able despite looking like git repo URLs. I've updated them to the new locations.
31 lines
928 B
Nix
31 lines
928 B
Nix
{ lib, stdenv, fetchgit, pkg-config, libbpf, cmake, elfutils, zlib, argp-standalone, musl-obstack }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pahole";
|
|
version = "1.23";
|
|
src = fetchgit {
|
|
url = "https://git.kernel.org/pub/scm/devel/pahole/pahole.git";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Dt3ZcUfjwdtTTv6qRFRgwK5GFWXdpN7fvb9KhpS1O94=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [ elfutils zlib libbpf ]
|
|
++ lib.optional stdenv.hostPlatform.isMusl [
|
|
argp-standalone
|
|
musl-obstack
|
|
];
|
|
|
|
# Put libraries in "lib" subdirectory, not top level of $out
|
|
cmakeFlags = [ "-D__LIB=lib" "-DLIBBPF_EMBEDDED=OFF" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://git.kernel.org/pub/scm/devel/pahole/pahole.git/";
|
|
description = "Pahole and other DWARF utils";
|
|
license = licenses.gpl2Only;
|
|
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ bosu martinetd ];
|
|
};
|
|
}
|