gnu: wl-clipboard-x11: Remove trailing #t.

* gnu/packages/xdisorg.scm (wl-clipboard-x11)
[arguments]: Remove trailing #t.

Change-Id: I8865323d76612f4ea7a97f93146f2ad126e31e75
This commit is contained in:
Maxim Cournoyer 2023-10-19 23:35:37 -04:00 committed by Ludovic Courtès
parent 8264a5b3f6
commit e81fab29e7
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -2911,15 +2911,13 @@ (define-public wl-clipboard-x11
(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")