2021-01-23 12:26:19 +00:00
|
|
|
{lib, stdenv, fetchFromGitHub}:
|
2018-10-01 16:20:25 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "uftrace";
|
2022-08-02 06:48:40 +01:00
|
|
|
version = "0.12";
|
2018-10-01 16:20:25 +01:00
|
|
|
|
|
|
|
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=";
|
2018-10-01 16:20:25 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
postUnpack = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Function (graph) tracer for user-space";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/namhyung/uftrace";
|
2021-01-23 12:26:19 +00:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = [lib.maintainers.nthorne];
|
2018-10-01 16:20:25 +01:00
|
|
|
};
|
|
|
|
}
|