mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
gnome3.gnome-tweaks: use buildPythonApplication
This commit is contained in:
parent
037d1121a4
commit
51b3765689
1 changed files with 48 additions and 21 deletions
|
@ -1,42 +1,69 @@
|
|||
{ stdenv, meson, ninja, gettext, fetchurl
|
||||
, pkgconfig, gtk3, glib, libsoup, gsettings-desktop-schemas
|
||||
, itstool, libxml2, python3Packages, libhandy_0
|
||||
, gnome3, gdk-pixbuf, libnotify, gobject-introspection, wrapGAppsHook }:
|
||||
{ lib
|
||||
, meson
|
||||
, ninja
|
||||
, fetchurl
|
||||
, gdk-pixbuf
|
||||
, gettext
|
||||
, glib
|
||||
, gnome3
|
||||
, gobject-introspection
|
||||
, gsettings-desktop-schemas
|
||||
, gtk3
|
||||
, itstool
|
||||
, libhandy_0
|
||||
, libnotify
|
||||
, libsoup
|
||||
, libxml2
|
||||
, pkg-config
|
||||
, python3Packages
|
||||
, wrapGAppsHook }:
|
||||
|
||||
let
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "gnome-tweaks";
|
||||
version = "3.34.0";
|
||||
in stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
format = "other";
|
||||
strictDeps = false; # https://github.com/NixOS/nixpkgs/issues/56943
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
||||
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||
sha256 = "0l2j42ba7v866iknygamnkiq7igh0fjvq92r93cslvvfnkx2ccq0";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson ninja pkgconfig gettext itstool libxml2 wrapGAppsHook python3Packages.python
|
||||
gettext
|
||||
gobject-introspection
|
||||
itstool
|
||||
libxml2
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
wrapGAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
gtk3 glib gsettings-desktop-schemas
|
||||
gdk-pixbuf gnome3.adwaita-icon-theme
|
||||
libnotify gnome3.gnome-shell python3Packages.pygobject3
|
||||
libsoup gnome3.gnome-settings-daemon gnome3.nautilus
|
||||
gnome3.mutter gnome3.gnome-desktop gobject-introspection
|
||||
gnome3.nautilus libhandy_0
|
||||
gdk-pixbuf
|
||||
glib
|
||||
gnome3.gnome-desktop
|
||||
gnome3.gnome-settings-daemon
|
||||
gnome3.gnome-shell
|
||||
# Makes it possible to select user themes through the `user-theme` extension
|
||||
gnome3.gnome-shell-extensions
|
||||
gnome3.mutter
|
||||
gsettings-desktop-schemas
|
||||
gtk3
|
||||
libhandy_0
|
||||
libnotify
|
||||
libsoup
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
pygobject3
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs meson-postinstall.py
|
||||
'';
|
||||
|
||||
preFixup = ''
|
||||
gappsWrapperArgs+=(
|
||||
--prefix PYTHONPATH : "$out/${python3Packages.python.sitePackages}:$PYTHONPATH")
|
||||
'';
|
||||
|
||||
passthru = {
|
||||
updateScript = gnome3.updateScript {
|
||||
packageName = pname;
|
||||
|
@ -44,7 +71,7 @@ in stdenv.mkDerivation rec {
|
|||
};
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://wiki.gnome.org/action/show/Apps/GnomeTweakTool";
|
||||
description = "A tool to customize advanced GNOME 3 options";
|
||||
maintainers = teams.gnome.members;
|
||||
|
|
Loading…
Reference in a new issue