mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
5fd479d50b
trace-cmd 3.1.6 needs at least version 1.6.
52 lines
1.3 KiB
Nix
52 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchgit
|
|
, pkg-config
|
|
, libtraceevent
|
|
, asciidoc
|
|
, xmlto
|
|
, docbook_xml_dtd_45
|
|
, docbook_xsl
|
|
, coreutils
|
|
, which
|
|
, valgrind
|
|
, sourceHighlight
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libtracefs";
|
|
version = "1.6.4";
|
|
|
|
src = fetchgit {
|
|
url = "git://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git";
|
|
rev = "libtracefs-${version}";
|
|
sha256 = "sha256-fWop0EMkoVulLBzU7q8x1IhMtdnEJ89wMz0cz964F6s=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace scripts/utils.mk --replace /bin/pwd ${coreutils}/bin/pwd
|
|
patchShebangs check-manpages.sh
|
|
'';
|
|
|
|
outputs = [ "out" "dev" "devman" "doc" ];
|
|
enableParallelBuilding = true;
|
|
nativeBuildInputs = [ pkg-config asciidoc xmlto docbook_xml_dtd_45 docbook_xsl which valgrind sourceHighlight ];
|
|
buildInputs = [ libtraceevent ];
|
|
makeFlags = [
|
|
"prefix=${placeholder "out"}"
|
|
"doc" # build docs
|
|
];
|
|
installFlags = [
|
|
"pkgconfig_dir=${placeholder "out"}/lib/pkgconfig"
|
|
"install_doc"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Linux kernel trace file system library";
|
|
homepage = "https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/";
|
|
license = licenses.lgpl21Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ wentasah ];
|
|
};
|
|
}
|