mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
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:
parent
8264a5b3f6
commit
e81fab29e7
1 changed files with 2 additions and 4 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue