lol
0
fork

Configure Feed

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

sysprof: 3.38.1 → 3.40.1

+15 -4
+1
pkgs/development/tools/profiling/sysprof/capture.nix
··· 25 25 26 26 meta = sysprof.meta // { 27 27 description = "Static library for Sysprof capture data generation"; 28 + license = lib.licenses.bsd2Patent; 28 29 platforms = lib.platforms.all; 29 30 }; 30 31 }
+14 -4
pkgs/development/tools/profiling/sysprof/default.nix
··· 5 5 , gettext 6 6 , glib 7 7 , gtk3 8 + , json-glib 8 9 , itstool 9 10 , libdazzle 10 11 , libxml2 ··· 20 21 21 22 stdenv.mkDerivation rec { 22 23 pname = "sysprof"; 23 - version = "3.38.1"; 24 + version = "3.40.1"; 24 25 25 26 outputs = [ "out" "lib" "dev" ]; 26 27 27 28 src = fetchurl { 28 29 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 29 - sha256 = "1z2i9187f2jx456l7h07wy8m9a0p7pj3xiv1aji3snq7rjb1lkj0"; 30 + sha256 = "0dvlzjwi3a4g37cpyhqpf41f5hypf0gim1jw9wqlv30flbb00l62"; 30 31 }; 31 32 32 33 nativeBuildInputs = [ ··· 41 42 wrapGAppsHook 42 43 gnome3.adwaita-icon-theme 43 44 ]; 44 - buildInputs = [ glib gtk3 pango polkit systemd.dev (lib.getLib systemd) libdazzle ]; 45 + 46 + buildInputs = [ 47 + glib 48 + gtk3 49 + json-glib 50 + pango 51 + polkit 52 + systemd 53 + libdazzle 54 + ]; 45 55 46 56 mesonFlags = [ 47 57 "-Dsystemdunitdir=lib/systemd/system" ··· 66 76 ''; 67 77 license = licenses.gpl2Plus; 68 78 maintainers = teams.gnome.members; 69 - platforms = platforms.linux; 79 + platforms = platforms.unix; 70 80 }; 71 81 }