nixpkgs-suyu/pkgs/development/tools/misc/pahole/default.nix

27 lines
721 B
Nix
Raw Normal View History

2015-07-11 13:11:14 +02:00
{ stdenv, fetchgit, cmake, elfutils, zlib }:
stdenv.mkDerivation rec {
2019-06-28 01:54:27 +02:00
pname = "pahole";
2019-12-17 16:19:56 +01:00
version = "1.16";
2015-07-11 13:11:14 +02:00
src = fetchgit {
url = https://git.kernel.org/pub/scm/devel/pahole/pahole.git;
rev = "v${version}";
2019-12-17 16:19:56 +01:00
sha256 = "1gfc9v4dgs811v1zjk0d9hsgmizllw2hibc83ykmakzysimaxsy3";
2015-07-11 13:11:14 +02:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ elfutils zlib ];
# Put libraries in "lib" subdirectory, not top level of $out
cmakeFlags = [ "-D__LIB=lib" ];
2015-07-11 13:11:14 +02:00
meta = with stdenv.lib; {
homepage = https://git.kernel.org/cgit/devel/pahole/pahole.git/;
description = "Pahole and other DWARF utils";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.bosu ];
};
}