My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/uftrace/default.nix

25 lines
568 B

{lib, stdenv, fetchFromGitHub}:
stdenv.mkDerivation rec {
pname = "uftrace";
version = "0.11";
src = fetchFromGitHub {
owner = "namhyung";
repo = "uftrace";
rev = "v${version}";
sha256 = "sha256-uRtMJIZJKGQTGqs8QX60FCeXg3j5hv/V/qw4m8eGYD4=";
};
postUnpack = ''
patchShebangs .
'';
meta = {
description = "Function (graph) tracer for user-space";
homepage = "https://github.com/namhyung/uftrace";
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
maintainers = [lib.maintainers.nthorne];
};
}