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