bug#70529: [PATCH] gnu: kauth: Fix KAUTH_HELPER_INSTALL_ABSOLUTE_DIR.

2024-04-25 Thread iyzsong--- via Bug reports for GNU Guix
From: 宋文武 KAuth helpers use KAUTH_HELPER_INSTALL_ABSOLUTE_DIR as the prefix for "Exec=" in their dbus service files, which should really be an absolute directory. Fixes . * gnu/packages/kde-frameworks.scm (kauth)[arguments]<#:phases>: In

bug#65684: [PATCH 1/2] gnu: kaidan: Add missing input.

2023-09-01 Thread iyzsong--- via Bug reports for GNU Guix
From: 宋文武 Fixes . * gnu/packages/messaging.scm (kaidan)[inputs]: Add sonnet. --- gnu/packages/messaging.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index d6296d43aa..5c65760caf 100644 ---

bug#63151: [PATCH] gnu: sound-juicer: Update to 3.40.0.

2023-09-01 Thread iyzsong--- via Bug reports for GNU Guix
From: 宋文武 * gnu/packages/gnome.scm (sound-juicer): Update to 3.40.0. [arguments]: Adjust 'disable-gtk-update-icon-cache'. Add 'wrap-program' for GST_PLUGIN_SYSTEM_PATH. --- gnu/packages/gnome.scm | 22 -- 1 file changed, 16 insertions(+), 6 deletions(-) diff --git

bug#65506: [PATCH] gnu: anki: Fix preferences error.

2023-08-25 Thread iyzsong--- via Bug reports for GNU Guix
From: 宋文武 Fixes . * gnu/packages/education.scm (anki)[source]: Add snippet. --- gnu/packages/education.scm | 7 +++ 1 file changed, 7 insertions(+) diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm index bb307cf7ab..21c8a60c0b 100644

bug#65390: [PATCH] gnu: naev: Fix build.

2023-08-19 Thread iyzsong--- via Bug reports for GNU Guix
From: 宋文武 * gnu/packages/games.scm (naev)[inputs]: Don't use sdl-union. Remove sdl2-mixer. --- gnu/packages/games.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index a5fa19fc20..38f9343499 100644 ---

bug#64981: [PATCH] gnu: libepoxy: Hardcode paths to GLES libraries.

2023-08-18 Thread iyzsong--- via Bug reports for GNU Guix
From: 宋文武 Fixes . * gnu/packages/gl.scm (libepoxy)[arguments]<#:phases>: Hardcode paths to libGLESv1_CM.so.1 and libGLESv2.so.2. --- gnu/packages/gl.scm | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/gnu/packages/gl.scm

bug#20255: [PATCH 4/4] news: Add entry for '/etc/profile' changes.

2023-05-17 Thread iyzsong--- via Bug reports for GNU Guix
From: 宋文武 * etc/news.scm: Add entry. --- etc/news.scm | 33 + 1 file changed, 33 insertions(+) diff --git a/etc/news.scm b/etc/news.scm index f5dc3ca0d5..2da92eeac3 100644 --- a/etc/news.scm +++ b/etc/news.scm @@ -26,6 +26,39 @@ (channel-news (version 0) +

bug#20255: [PATCH 1/4] home: shells: Merge search-paths of multiple profiles.

2023-05-17 Thread iyzsong--- via Bug reports for GNU Guix
From: 宋文武 This is a followup to 40310efde9b4a4f2cf98081d6cd10f843685ebb6. * gnu/home/services.scm (environment-variables->setup-environment-script): Merge search-paths from multiple profiles via "guix package". * gnu/home/services/shells.scm (zsh-file-zprofile, add-bash-configuration): Adjust

bug#20255: [PATCH 3/4] system: Only source system profile's settings in '/etc/profile'.

2023-05-17 Thread iyzsong--- via Bug reports for GNU Guix
From: 宋文武 This is a followup to 40310efde9b4a4f2cf98081d6cd10f843685ebb6. * gnu/system.scm (operating-system-etc-service)[profile]: Don't source profile of '~/.guix-profile' and '~/.config/guix/current'. --- gnu/system.scm | 23 --- 1 file changed, 4 insertions(+), 19

bug#20255: [PATCH 2/4] system: default-skeletons: Set up Guix home profile when it exists.

2023-05-17 Thread iyzsong--- via Bug reports for GNU Guix
From: 宋文武 This is a followup to 40310efde9b4a4f2cf98081d6cd10f843685ebb6. * gnu/system/shadow.scm (default-skeletons)[bash_profile, zprofile]: Source '~/.profile' when '~/.guix-home' exists. --- gnu/system/shadow.scm | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git