3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/uftrace/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
568 B
Nix
Raw Normal View History

{lib, stdenv, fetchFromGitHub}:
stdenv.mkDerivation rec {
pname = "uftrace";
2022-08-02 06:48:40 +01:00
version = "0.12";
src = fetchFromGitHub {
owner = "namhyung";
repo = "uftrace";
2018-11-11 11:15:06 +00:00
rev = "v${version}";
2022-08-02 06:48:40 +01:00
sha256 = "sha256-YjeZGjSctnhbHqWikdVhiEl0hr/qrA4S4JbCJscXe7A=";
};
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];
};
}