forked from mirrors/nixpkgs
nixpkgs: add trace-cmd 2.5.3
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
834c731a72
commit
003f5a87b3
25
pkgs/os-specific/linux/trace-cmd/default.nix
Normal file
25
pkgs/os-specific/linux/trace-cmd/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, fetchgit, asciidoc, libxslt }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "trace-cmd-${version}";
|
||||
version = "2.5.3";
|
||||
|
||||
src = fetchgit {
|
||||
url = "git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/trace-cmd.git";
|
||||
rev = "refs/tags/trace-cmd-v${version}";
|
||||
sha256 = "32db3df07d0371c2b072029c6c86c4204be8cbbcb53840fa8c42dbf2e35c047b";
|
||||
};
|
||||
|
||||
buildInputs = [ asciidoc libxslt ];
|
||||
|
||||
configurePhase = "true";
|
||||
buildPhase = "make prefix=$out all doc";
|
||||
installPhase = "make prefix=$out install install_doc";
|
||||
|
||||
meta = {
|
||||
description = "user-space tools for the Linux kernel ftrace subsystem";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
||||
};
|
||||
}
|
|
@ -2891,6 +2891,8 @@ let
|
|||
|
||||
tpm-tools = callPackage ../tools/security/tpm-tools { };
|
||||
|
||||
trace-cmd = callPackage ../os-specific/linux/trace-cmd { };
|
||||
|
||||
traceroute = callPackage ../tools/networking/traceroute { };
|
||||
|
||||
trash-cli = callPackage ../tools/misc/trash-cli { };
|
||||
|
|
Loading…
Reference in a new issue