This patch was submitted upstream: https://github.com/scheme/scsh/pull/46 diff --git a/scheme/lib-dirs.scm b/scheme/lib-dirs.scm index a1fc009..c630fb4 100644 --- a/scheme/lib-dirs.scm +++ b/scheme/lib-dirs.scm @@ -75,6 +75,7 @@ (let ((val (read))) (cond ((eof-object? val) '()) ((string? val) (cons val (recur))) + ((symbol? val) (cons (symbol->string val) (recur))) ((not val) (append default-lib-dirs (recur))) (else (error thod='get'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/sync.scm
AgeCommit message (Expand)Author
2023-09-24gnu: onedrive: Update to 2.4.25....* gnu/packages/sync.scm (onedrive): Update to 2.4.25. Tobias Geerinckx-Rice
2023-09-17gnu: Remove extraneous imports....Found by running 'guild compile -W3 gnu/packages/$module.scm', using guild from the upcoming Guile. * gnu/packages/admin.scm: Remove extraneous imports. * gnu/packages/avr.scm: Likewise. * gnu/packages/base.scm: Likewise. * gnu/packages/bootloaders.scm: Likewise. * gnu/packages/firmware.scm: Likewise. * gnu/packages/linphone.scm: Likewise. * gnu/packages/telephony.scm: Likewise. * gnu/packages/cran.scm: Likewise. * gnu/packages/kde.scm: Likewise. * gnu/packages/libcanberra.scm: Likewise. * gnu/packages/libreoffice.scm: Likewise. * gnu/packages/mes.scm: Likewise. * gnu/packages/mingw.scm: Likewise. * gnu/packages/serialization.scm: Likewise. * gnu/packages/sync.scm: Likewise. * gnu/packages/syncthing.scm: Likewise. * gnu/packages/terminals.scm: Likewise. * gnu/packages/version-control.scm: Likewise. * gnu/packages/video.scm: Likewise. * gnu/packages/wm.scm: Likewise. * gnu/packages/emulators.scm: Likewise. Reviewed-by: Ludovic Courtès <ludo@gnu.org> Maxim Cournoyer
2023-07-23gnu: fuse@3: Bind to default FUSE variable....* gnu/packages/linux.scm (fuse): Rename this… (fuse-2): …to this, and… (fuse-3): …rename this… (fuse): …to this! (fuse-static): Rename this… (fuse-2-static): …to this. Adjust all users. Tobias Geerinckx-Rice
2023-07-02gnu: nextcloud-client: Update to 3.8.2....* gnu/packages/sync.scm (nextcloud-client): Update to 3.8.2. [snippets]: Keep 3rd-party files from kirigami. Remove more references of deleted 3rd parties. Adjust substitute for new code. [configure-flags]: Disable building the updater. [phases]<patch-cmake>: Adjust substitute for new code. <check>: Use custom phase to disable a failing test. [inputs]: Add dbus and karchive. [native-inputs]: Add librsvg-for-system. Hartmut Goebel
2023-06-14gnu: onedrive: Link to all necessary libraries....Reported by adanska on IRC. * gnu/packages/sync.scm (onedrive)[arguments]: Remove custom 'link-to-external-libraries phase to allow linking to more libraries. Efraim Flashner