lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.11-pre 34 lines 586 B view raw
1{ stdenv 2, lib 3, meson 4, ninja 5, sysprof 6}: 7 8stdenv.mkDerivation rec { 9 pname = "libsysprof-capture"; 10 11 inherit (sysprof) src version; 12 13 nativeBuildInputs = [ 14 meson 15 ninja 16 ]; 17 18 mesonFlags = [ 19 "-Dsysprofd=none" 20 "-Dgtk=false" 21 "-Dlibsysprof=false" 22 "-Dhelp=false" 23 "-Dtools=false" 24 "-Dtests=false" 25 "-Dexamples=false" 26 ]; 27 28 meta = sysprof.meta // { 29 description = "Static library for Sysprof capture data generation"; 30 license = lib.licenses.bsd2Patent; 31 platforms = lib.platforms.all; 32 pkgConfigModules = [ "sysprof-capture-4" ]; 33 }; 34}