gnu: wgetpaste: Add xclip to wrapper program list.

* gnu/packages/wget.scm (wgetpaste)[arguments]: Add xclip to list of
wrapper programs in custom 'wrap-program phase.
[inputs]: Add xclip.
This commit is contained in:
Efraim Flashner 2019-06-12 12:53:31 +03:00
parent ae6fa185af
commit 08b00d384b
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 4 additions and 2 deletions

View File

@ -37,6 +37,7 @@
#:use-module (gnu packages pcre)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages tls)
#:use-module (gnu packages xdisorg)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix git-download)
@ -123,11 +124,12 @@ in downloaded documents to relative links.")
,(delete-duplicates
(map (lambda (command) (dirname (which command)))
(list "bash" "mktemp" "sed" "sort" "tee" "tr"
"wget")))))
"wget" "xclip")))))
#t))))
#:tests? #f)) ; no test target
(inputs
`(("wget" ,wget)))
`(("wget" ,wget)
("xclip" ,xclip)))
(home-page "http://wgetpaste.zlin.dk/")
(synopsis "Script that automates pasting to a number of pastebin services")
(description