diff options
-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") |