nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
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 ··· 21 20 22 21 stdenv.mkDerivation rec { 23 22 pname = "sysprof"; 24 - version = "3.38.1"; 23 + version = "3.40.1"; 25 24 26 25 outputs = [ "out" "lib" "dev" ]; 27 26 28 27 src = fetchurl { 29 28 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 30 - sha256 = "1z2i9187f2jx456l7h07wy8m9a0p7pj3xiv1aji3snq7rjb1lkj0"; 29 + sha256 = "0dvlzjwi3a4g37cpyhqpf41f5hypf0gim1jw9wqlv30flbb00l62"; 31 30 }; 32 31 33 32 nativeBuildInputs = [ ··· 42 41 wrapGAppsHook 43 42 gnome3.adwaita-icon-theme 44 43 ]; 45 - buildInputs = [ glib gtk3 pango polkit systemd.dev (lib.getLib systemd) libdazzle ]; 44 + 45 + buildInputs = [ 46 + glib 47 + gtk3 48 + json-glib 49 + pango 50 + polkit 51 + systemd 52 + libdazzle 53 + ]; 46 54 47 55 mesonFlags = [ 48 56 "-Dsystemdunitdir=lib/systemd/system" ··· 76 66 ''; 77 67 license = licenses.gpl2Plus; 78 68 maintainers = teams.gnome.members; 79 - platforms = platforms.linux; 69 + platforms = platforms.unix; 80 70 }; 81 71 }