uftrace: init at 0.9 (#47117)

* uftrace: init at 0.9

* Dropped dependency leftovers.

* patchShebang needed for sandboxed build
This commit is contained in:
Niklas Thörne 2018-10-01 17:20:25 +02:00 committed by xeji
parent 62bf19d2fc
commit dee90d27e2
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "uftrace-${version}";
version = "0.9";
src = fetchFromGitHub {
owner = "namhyung";
repo = "uftrace";
rev = "f0fed0b24a9727ffed04673b62f66baad21a1f99";
sha256 = "0rn2xwd87qy5ihn5zq9pwq8cs1vfmcqqz0wl70wskkgp2ccsd9x8";
};
postUnpack = ''
patchShebangs .
'';
meta = {
description = "Function (graph) tracer for user-space";
homepage = https://github.com/namhyung/uftrace;
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
maintainers = [stdenv.lib.maintainers.nthorne];
};
}

View file

@ -5737,6 +5737,8 @@ with pkgs;
stdenv = overrideCC stdenv gcc6; # doesn't build with gcc7
};
uftrace = callPackage ../development/tools/uftrace { };
uget = callPackage ../tools/networking/uget { };
uget-integrator = callPackage ../tools/networking/uget-integrator { };