Merge pull request #331621 from heywoodlh/guake-fix

guake: use python311
This commit is contained in:
Peder Bergebakken Sundt 2024-08-11 22:51:36 +02:00 committed by GitHub
commit a3a603d7ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,8 @@
{ lib { lib
, fetchFromGitHub , fetchFromGitHub
, fetchpatch , fetchpatch
, python3 , python311
, python311Packages
, glibcLocales , glibcLocales
, gobject-introspection , gobject-introspection
, wrapGAppsHook3 , wrapGAppsHook3
@ -15,7 +16,7 @@
, nixosTests , nixosTests
}: }:
python3.pkgs.buildPythonApplication rec { python311Packages.buildPythonApplication rec {
pname = "guake"; pname = "guake";
version = "3.10"; version = "3.10";
@ -55,7 +56,7 @@ python3.pkgs.buildPythonApplication rec {
nativeBuildInputs = [ nativeBuildInputs = [
gobject-introspection gobject-introspection
wrapGAppsHook3 wrapGAppsHook3
python3.pkgs.pip python311Packages.pip
]; ];
buildInputs = [ buildInputs = [
@ -64,13 +65,13 @@ python3.pkgs.buildPythonApplication rec {
keybinder3 keybinder3
libnotify libnotify
libwnck libwnck
python3 python311
vte vte
]; ];
makeWrapperArgs = [ "--set LOCALE_ARCHIVE ${glibcLocales}/lib/locale/locale-archive" ]; makeWrapperArgs = [ "--set LOCALE_ARCHIVE ${glibcLocales}/lib/locale/locale-archive" ];
propagatedBuildInputs = with python3.pkgs; [ propagatedBuildInputs = with python311Packages; [
dbus-python dbus-python
pycairo pycairo
pygobject3 pygobject3
@ -96,7 +97,7 @@ python3.pkgs.buildPythonApplication rec {
description = "Drop-down terminal for GNOME"; description = "Drop-down terminal for GNOME";
homepage = "http://guake-project.org"; homepage = "http://guake-project.org";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = [ maintainers.msteen ]; maintainers = [ maintainers.msteen maintainers.heywoodlh ];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }