diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-10-19 23:35:37 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:26 +0200 |
commit | e81fab29e7b6c4b06dca1f4f3a2a73f09a666436 (patch) | |
tree | c0b8a41be63ced73014ab39eb22e4a5971f94b9f /gnu | |
parent | 8264a5b3f6482bd3f7662d479d9c91cd3a62efe7 (diff) | |
download | guix-e81fab29e7b6c4b06dca1f4f3a2a73f09a666436.tar.gz guix-e81fab29e7b6c4b06dca1f4f3a2a73f09a666436.zip |
gnu: wl-clipboard-x11: Remove trailing #t.
* gnu/packages/xdisorg.scm (wl-clipboard-x11)
[arguments]: Remove trailing #t.
Change-Id: I8865323d76612f4ea7a97f93146f2ad126e31e75
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xdisorg.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 2dfbcd20ce..4486afd6c4 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -2911,15 +2911,13 @@ Wayland.") (let ((out (assoc-ref outputs "out")) (wl-clipboard (assoc-ref inputs "wl-clipboard"))) (wrap-program (string-append out "/bin/wl-clipboard-x11") - `("PATH" prefix (,(string-append wl-clipboard "/bin"))))) - #t)) + `("PATH" prefix (,(string-append wl-clipboard "/bin"))))))) (add-after 'wrap-binary 'symlink-utilities ;; As seen in the Makefile. (lambda* (#:key outputs #:allow-other-keys) (let ((bin (string-append (assoc-ref outputs "out") "/bin/"))) (symlink "wl-clipboard-x11" (string-append bin "xclip")) - (symlink "wl-clipboard-x11" (string-append bin "xsel"))) - #t))))) + (symlink "wl-clipboard-x11" (string-append bin "xsel")))))))) (inputs (list bash-minimal wl-clipboard)) (home-page "https://github.com/brunelli/wl-clipboard-x11") |