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