gnome3.dconf-editor: 3.38.2 → 3.38.3
This commit is contained in:
parent
25c1e07188
commit
e235c63838
@ -1,21 +1,51 @@
|
|||||||
{ lib, stdenv, fetchurl, meson, ninja, vala, libxslt, pkg-config, glib, gtk3, gnome3, python3, dconf
|
{ lib
|
||||||
, libxml2, gettext, docbook_xsl, wrapGAppsHook, gobject-introspection }:
|
, stdenv
|
||||||
|
, fetchurl
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, vala
|
||||||
|
, libxslt
|
||||||
|
, pkg-config
|
||||||
|
, glib
|
||||||
|
, gtk3
|
||||||
|
, gnome3
|
||||||
|
, python3
|
||||||
|
, dconf
|
||||||
|
, libxml2
|
||||||
|
, gettext
|
||||||
|
, docbook-xsl-nons
|
||||||
|
, wrapGAppsHook
|
||||||
|
, gobject-introspection
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "dconf-editor";
|
pname = "dconf-editor";
|
||||||
version = "3.38.2";
|
version = "3.38.3";
|
||||||
|
|
||||||
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 = "sha256-ElPa2H5iE/vzE/+eydxDWKobECYfKAcsHcDgmXuS+DU=";
|
sha256 = "sha256-Vxr0x9rU8Em1PmzXKLea3fCMJ92ra8V7OW0hGGbueeM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
meson ninja vala libxslt pkg-config wrapGAppsHook
|
meson
|
||||||
gettext docbook_xsl libxml2 gobject-introspection python3
|
ninja
|
||||||
|
vala
|
||||||
|
libxslt
|
||||||
|
pkg-config
|
||||||
|
wrapGAppsHook
|
||||||
|
gettext
|
||||||
|
docbook-xsl-nons
|
||||||
|
libxml2
|
||||||
|
gobject-introspection
|
||||||
|
python3
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [ glib gtk3 dconf ];
|
buildInputs = [
|
||||||
|
glib
|
||||||
|
gtk3
|
||||||
|
dconf
|
||||||
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
chmod +x meson_post_install.py
|
chmod +x meson_post_install.py
|
||||||
@ -30,7 +60,10 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
platforms = platforms.linux;
|
description = "GSettings editor for GNOME";
|
||||||
|
homepage = "https://wiki.gnome.org/Apps/DconfEditor";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
maintainers = teams.gnome.members;
|
maintainers = teams.gnome.members;
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user