mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-05 20:43:28 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
91 lines
1.7 KiB
Nix
91 lines
1.7 KiB
Nix
{ lib
|
|
, meson
|
|
, ninja
|
|
, fetchurl
|
|
, gdk-pixbuf
|
|
, gettext
|
|
, glib
|
|
, gnome
|
|
, gnome-desktop
|
|
, gobject-introspection
|
|
, gsettings-desktop-schemas
|
|
, gtk3
|
|
, itstool
|
|
, libhandy
|
|
, libnotify
|
|
, libxml2
|
|
, pkg-config
|
|
, python3Packages
|
|
, wrapGAppsHook }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "gnome-tweaks";
|
|
version = "45.1";
|
|
format = "other";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz";
|
|
sha256 = "lf+n842bHf1eTOvvt1JBn+ohzUBwITla3J8RKFRBbU8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
gobject-introspection
|
|
itstool
|
|
libxml2
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
gdk-pixbuf
|
|
glib
|
|
gnome-desktop
|
|
gnome.gnome-settings-daemon
|
|
gnome.gnome-shell
|
|
# Makes it possible to select user themes through the `user-theme` extension
|
|
gnome.gnome-shell-extensions
|
|
gnome.mutter
|
|
gsettings-desktop-schemas
|
|
gtk3
|
|
libhandy
|
|
libnotify
|
|
];
|
|
|
|
pythonPath = with python3Packages; [
|
|
pygobject3
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs meson-postinstall.py
|
|
'';
|
|
|
|
dontWrapGApps = true;
|
|
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapPythonProgramsIn "$out/libexec" "$out $pythonPath"
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = pname;
|
|
attrPath = "gnome.${pname}";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://wiki.gnome.org/Apps/Tweaks";
|
|
description = "A tool to customize advanced GNOME 3 options";
|
|
mainProgram = "gnome-tweaks";
|
|
maintainers = teams.gnome.members;
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|