55 lines
1.6 KiB
Nix
55 lines
1.6 KiB
Nix
{ stdenv, meson, ninja, gettext, fetchurl
|
|
, pkgconfig, gtk3, glib, libsoup
|
|
, itstool, libxml2, python3Packages
|
|
, gnome3, gdk_pixbuf, libnotify, gobjectIntrospection, wrapGAppsHook }:
|
|
|
|
let
|
|
pname = "gnome-tweaks";
|
|
version = "3.28.1";
|
|
in stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
|
|
sha256 = "1p5xydr0haz4389h6dvvbna6i1mipdzvmlfksnv0jqfvfs9sy6fp";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson ninja pkgconfig gettext itstool libxml2 wrapGAppsHook
|
|
];
|
|
buildInputs = [
|
|
gtk3 glib gnome3.gsettings-desktop-schemas
|
|
gdk_pixbuf gnome3.defaultIconTheme
|
|
libnotify gnome3.gnome-shell python3Packages.pygobject3
|
|
libsoup gnome3.gnome-settings-daemon gnome3.nautilus
|
|
gnome3.mutter gnome3.gnome-desktop gobjectIntrospection
|
|
gnome3.nautilus
|
|
# Makes it possible to select user themes through the `user-theme` extension
|
|
gnome3.gnome-shell-extensions
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs meson-postinstall.py
|
|
'';
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
--prefix PYTHONPATH : "$out/${python3Packages.python.sitePackages}:$PYTHONPATH")
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
attrPath = "gnome3.${pname}";
|
|
};
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://wiki.gnome.org/action/show/Apps/GnomeTweakTool;
|
|
description = "A tool to customize advanced GNOME 3 options";
|
|
maintainers = gnome3.maintainers;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|