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

28 lines
755 B
Nix
Raw Normal View History

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