sysprof: 3.38.1 → 3.40.1

This commit is contained in:
Jan Tojnar 2021-03-21 01:29:06 +00:00
parent 7c3520cc84
commit a7afb378d5
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4
2 changed files with 15 additions and 4 deletions

View File

@ -25,6 +25,7 @@ stdenv.mkDerivation rec {
meta = sysprof.meta // { meta = sysprof.meta // {
description = "Static library for Sysprof capture data generation"; description = "Static library for Sysprof capture data generation";
license = lib.licenses.bsd2Patent;
platforms = lib.platforms.all; platforms = lib.platforms.all;
}; };
} }

View File

@ -5,6 +5,7 @@
, gettext , gettext
, glib , glib
, gtk3 , gtk3
, json-glib
, itstool , itstool
, libdazzle , libdazzle
, libxml2 , libxml2
@ -20,13 +21,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "sysprof"; pname = "sysprof";
version = "3.38.1"; version = "3.40.1";
outputs = [ "out" "lib" "dev" ]; outputs = [ "out" "lib" "dev" ];
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "1z2i9187f2jx456l7h07wy8m9a0p7pj3xiv1aji3snq7rjb1lkj0"; sha256 = "0dvlzjwi3a4g37cpyhqpf41f5hypf0gim1jw9wqlv30flbb00l62";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -41,7 +42,16 @@ stdenv.mkDerivation rec {
wrapGAppsHook wrapGAppsHook
gnome3.adwaita-icon-theme gnome3.adwaita-icon-theme
]; ];
buildInputs = [ glib gtk3 pango polkit systemd.dev (lib.getLib systemd) libdazzle ];
buildInputs = [
glib
gtk3
json-glib
pango
polkit
systemd
libdazzle
];
mesonFlags = [ mesonFlags = [
"-Dsystemdunitdir=lib/systemd/system" "-Dsystemdunitdir=lib/systemd/system"
@ -66,6 +76,6 @@ stdenv.mkDerivation rec {
''; '';
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = teams.gnome.members; maintainers = teams.gnome.members;
platforms = platforms.linux; platforms = platforms.unix;
}; };
} }