nixpkgs/pkgs/development/tools/profiling/sysprof/capture.nix

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

35 lines
581 B
Nix
Raw Normal View History

{ lib, stdenv
, meson
, ninja
, sysprof
}:
stdenv.mkDerivation rec {
pname = "libsysprof-capture";
inherit (sysprof) src version;
nativeBuildInputs = [
meson
ninja
];
mesonFlags = [
"-Dagent=false"
"-Dsysprofd=none"
"-Dgtk=false"
"-Dlibsysprof=false"
"-Dlibunwind=false"
"-Dhelp=false"
"-Dtools=false"
"-Dtests=false"
"-Dexamples=false"
];
meta = sysprof.meta // {
description = "Static library for Sysprof capture data generation";
2021-03-21 01:29:06 +00:00
license = lib.licenses.bsd2Patent;
platforms = lib.platforms.all;
};
}