mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
9367367dfd
Permanent redirects on homepages and/or source URLs as reported by Repology
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ stdenv, mkDerivation, fetchgit, qtbase, cmake, asciidoc, docbook_xsl, json_c, mesa_glu, freeglut, trace-cmd, pkg-config }:
|
|
mkDerivation {
|
|
pname = "kernelshark";
|
|
version = "1.1.0";
|
|
|
|
src = fetchgit (import ./src.nix);
|
|
|
|
patches = [ ./fix-Makefiles.patch ];
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
preConfigure = "pushd kernel-shark";
|
|
|
|
nativeBuildInputs = [ pkg-config cmake asciidoc ];
|
|
|
|
buildInputs = [ qtbase json_c mesa_glu freeglut ];
|
|
|
|
cmakeFlags = [
|
|
"-D_INSTALL_PREFIX=${placeholder "out"}"
|
|
"-DTRACECMD_BIN_DIR=${trace-cmd}/bin"
|
|
"-DTRACECMD_INCLUDE_DIR=${trace-cmd.dev}/include"
|
|
"-DTRACECMD_LIBRARY=${trace-cmd.lib}/lib/trace-cmd/libtracecmd.a"
|
|
"-DTRACEEVENT_LIBRARY=${trace-cmd.lib}/lib/traceevent/libtraceevent.a"
|
|
];
|
|
|
|
preInstall = ''
|
|
popd
|
|
make install_doc_gui prefix=$doc \
|
|
FIND_MANPAGE_DOCBOOK_XSL=${docbook_xsl}/share/xml/docbook-xsl-nons/manpages/docbook.xsl
|
|
pushd kernel-shark/build
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "GUI for trace-cmd which is an interface for the Linux kernel ftrace subsystem";
|
|
homepage = https://kernelshark.org/;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ basvandijk ];
|
|
};
|
|
}
|