gnome3.gnome-desktop: 3.38.4 → 40.1
- use libxkbregistry to parse evdev rules files for us https://gitlab.gnome.org/GNOME/gnome-desktop/-/merge_requests/88 - add debug info – I have seen some crashes so let’s make it easier to debug them.
This commit is contained in:
parent
974acc474f
commit
76e6e4b519
@ -1,29 +1,40 @@
|
|||||||
{ lib, stdenv, fetchurl, substituteAll, pkg-config, libxslt, ninja, gnome3, gtk3, glib
|
{ lib
|
||||||
, gettext, libxml2, xkeyboard_config, isocodes, meson, wayland
|
, stdenv
|
||||||
, libseccomp, systemd, bubblewrap, gobject-introspection, gtk-doc, docbook_xsl, gsettings-desktop-schemas }:
|
, fetchurl
|
||||||
|
, substituteAll
|
||||||
|
, pkg-config
|
||||||
|
, libxslt
|
||||||
|
, ninja
|
||||||
|
, gnome3
|
||||||
|
, gtk3
|
||||||
|
, glib
|
||||||
|
, gettext
|
||||||
|
, libxml2
|
||||||
|
, xkeyboard_config
|
||||||
|
, libxkbcommon
|
||||||
|
, isocodes
|
||||||
|
, meson
|
||||||
|
, wayland
|
||||||
|
, libseccomp
|
||||||
|
, systemd
|
||||||
|
, bubblewrap
|
||||||
|
, gobject-introspection
|
||||||
|
, gtk-doc
|
||||||
|
, docbook-xsl-nons
|
||||||
|
, gsettings-desktop-schemas
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gnome-desktop";
|
pname = "gnome-desktop";
|
||||||
version = "3.38.4";
|
version = "40.1";
|
||||||
|
|
||||||
outputs = [ "out" "dev" "devdoc" ];
|
outputs = [ "out" "dev" "devdoc" ];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/gnome-desktop/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
url = "mirror://gnome/sources/gnome-desktop/${lib.versions.major version}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "sha256-P2A+pb/UdyLJLPybiFRGtGJg6gnIz7Y/a92f7+NC5Iw=";
|
sha256 = "sha256-igeJcwUhnFaZVJriBI9xVVFe+Xx85NZYXd2hXVhZ4c8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
pkg-config meson ninja gettext libxslt libxml2 gobject-introspection
|
|
||||||
gtk-doc docbook_xsl glib
|
|
||||||
];
|
|
||||||
buildInputs = [
|
|
||||||
bubblewrap xkeyboard_config isocodes wayland
|
|
||||||
gtk3 glib libseccomp systemd
|
|
||||||
];
|
|
||||||
|
|
||||||
propagatedBuildInputs = [ gsettings-desktop-schemas ];
|
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
(substituteAll {
|
(substituteAll {
|
||||||
src = ./bubblewrap-paths.patch;
|
src = ./bubblewrap-paths.patch;
|
||||||
@ -32,11 +43,42 @@ stdenv.mkDerivation rec {
|
|||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pkg-config
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
gettext
|
||||||
|
libxslt
|
||||||
|
libxml2
|
||||||
|
gobject-introspection
|
||||||
|
gtk-doc
|
||||||
|
docbook-xsl-nons
|
||||||
|
glib
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
bubblewrap
|
||||||
|
xkeyboard_config
|
||||||
|
libxkbcommon # for xkbregistry
|
||||||
|
isocodes
|
||||||
|
wayland
|
||||||
|
gtk3
|
||||||
|
glib
|
||||||
|
libseccomp
|
||||||
|
systemd
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
gsettings-desktop-schemas
|
||||||
|
];
|
||||||
|
|
||||||
mesonFlags = [
|
mesonFlags = [
|
||||||
"-Dgtk_doc=true"
|
"-Dgtk_doc=true"
|
||||||
"-Ddesktop_docs=false"
|
"-Ddesktop_docs=false"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
separateDebugInfo = stdenv.isLinux;
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
updateScript = gnome3.updateScript {
|
updateScript = gnome3.updateScript {
|
||||||
packageName = "gnome-desktop";
|
packageName = "gnome-desktop";
|
||||||
@ -46,7 +88,8 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Library with common API for various GNOME modules";
|
description = "Library with common API for various GNOME modules";
|
||||||
license = with licenses; [ gpl2 lgpl2 ];
|
homepage = "https://gitlab.gnome.org/GNOME/gnome-desktop";
|
||||||
|
license = with licenses; [ gpl2Plus lgpl2Plus ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = teams.gnome.members;
|
maintainers = teams.gnome.members;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user