mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
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
1 changed files with 4 additions and 2 deletions
|
@ -37,6 +37,7 @@ (define-module (gnu packages wget)
|
|||
#: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 @@ (define-public wgetpaste
|
|||
,(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
|
||||
|
|
Loading…
Reference in a new issue