54 lines
1.5 KiB
Nix
54 lines
1.5 KiB
Nix
{ stdenv, fetchurl, substituteAll, pkgconfig, libxslt, ninja, gnome3, gtk3, glib
|
|
, gettext, libxml2, xkeyboard_config, isocodes, meson, wayland
|
|
, libseccomp, systemd, bubblewrap, gobject-introspection, gtk-doc, docbook_xsl, gsettings-desktop-schemas }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-desktop";
|
|
version = "3.38.1";
|
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gnome-desktop/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "1q1vri9vsrdwhhl26dk1f79a3dhwfn9dhbaiczli826nzq9kb40p";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig 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 = [
|
|
(substituteAll {
|
|
src = ./bubblewrap-paths.patch;
|
|
bubblewrap_bin = "${bubblewrap}/bin/bwrap";
|
|
inherit (builtins) storeDir;
|
|
})
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Dgtk_doc=true"
|
|
"-Ddesktop_docs=false"
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = "gnome-desktop";
|
|
attrPath = "gnome3.gnome-desktop";
|
|
};
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Library with common API for various GNOME modules";
|
|
license = with licenses; [ gpl2 lgpl2 ];
|
|
platforms = platforms.linux;
|
|
maintainers = teams.gnome.members;
|
|
};
|
|
}
|