diff options
| author | Andre A. Gomes <andremegafone@gmail.com> | 2023-08-21 21:57:32 +0300 |
|---|---|---|
| committer | Guillaume Le Vaillant <glv@posteo.net> | 2023-08-22 11:13:56 +0200 |
| commit | 5dac5882a7ce9c2edf60cd82c4ff083b922574c1 (patch) | |
| tree | ce217d76098b8e313f879b88afa185e011ef6cbf /gnu | |
| parent | dc2c851c356fb24215acbc5d14372ce93881a9df (diff) | |
gnu: cl-trivial-clipboard: Update to 0.0.0-6.6ddf8d5.
* gnu/packages/lisp-xyz.scm (sbcl-trivial-clipboard): Update to
0.0.0-6.6ddf8d5.
[inputs]: Add wl-clipboard.
[arguments]: Update 'fix-paths' phase.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/lisp-xyz.scm | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 01acd0299ff..d62122f4082 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm | |||
| @@ -5487,25 +5487,25 @@ client and server.") | |||
| 5487 | (sbcl-package->cl-source-package sbcl-trivial-arguments)) | 5487 | (sbcl-package->cl-source-package sbcl-trivial-arguments)) |
| 5488 | 5488 | ||
| 5489 | (define-public sbcl-trivial-clipboard | 5489 | (define-public sbcl-trivial-clipboard |
| 5490 | (let ((commit "13b53720306c0e6a13eccf4674d28ee5361127ae")) | 5490 | (let ((commit "6ddf8d5dff8f5c2102af7cd1a1751cbe6408377b") |
| 5491 | (revision "6")) | ||
| 5491 | (package | 5492 | (package |
| 5492 | (name "sbcl-trivial-clipboard") | 5493 | (name "sbcl-trivial-clipboard") |
| 5493 | (version (git-version "0.0.0.0" "5" commit)) | 5494 | (version (git-version "0.0.0" revision commit)) |
| 5494 | (source | 5495 | (source |
| 5495 | (origin | 5496 | (origin |
| 5496 | (method git-fetch) | 5497 | (method git-fetch) |
| 5497 | (uri (git-reference | 5498 | (uri (git-reference |
| 5498 | (url "https://github.com/snmsts/trivial-clipboard") | 5499 | (url "https://github.com/snmsts/trivial-clipboard") |
| 5499 | (commit commit))) | 5500 | (commit commit))) |
| 5500 | (file-name (git-file-name "trivial-clipboard" version)) | 5501 | (file-name (git-file-name "cl-trivial-clipboard" version)) |
| 5501 | (sha256 | 5502 | (sha256 |
| 5502 | (base32 | 5503 | (base32 "04qmm69zyx8rs23pfhgzgxn0j108byv3b7skfdv0h01a76wlhplz")))) |
| 5503 | "0l198m1gg2ixc43lqjq1ffd80s1sjxhqf1w83qqa1cn51rra2jp8")))) | ||
| 5504 | (build-system asdf-build-system/sbcl) | 5504 | (build-system asdf-build-system/sbcl) |
| 5505 | (inputs | 5505 | (inputs |
| 5506 | ;; Pick xsel instead of xclip because its closure size is slightly | 5506 | ;; Pick xsel instead of xclip because its closure size is slightly |
| 5507 | ;; smaller. | 5507 | ;; smaller. |
| 5508 | (list xsel)) | 5508 | (list wl-clipboard xsel)) |
| 5509 | (native-inputs | 5509 | (native-inputs |
| 5510 | (list sbcl-fiveam)) | 5510 | (list sbcl-fiveam)) |
| 5511 | (arguments | 5511 | (arguments |
| @@ -5515,7 +5515,15 @@ client and server.") | |||
| 5515 | (lambda* (#:key inputs #:allow-other-keys) | 5515 | (lambda* (#:key inputs #:allow-other-keys) |
| 5516 | (substitute* "src/text.lisp" | 5516 | (substitute* "src/text.lisp" |
| 5517 | (("\"xsel\"") | 5517 | (("\"xsel\"") |
| 5518 | (string-append "\"" (assoc-ref inputs "xsel") "/bin/xsel\"")))))))) | 5518 | (string-append "\"" (assoc-ref inputs "xsel") "/bin/xsel\"")) |
| 5519 | (("\"wl-copy\"") | ||
| 5520 | (string-append "\"" | ||
| 5521 | (assoc-ref inputs "wl-clipboard") | ||
| 5522 | "/bin/wl-copy\"")) | ||
| 5523 | (("\"wl-paste\"") | ||
| 5524 | (string-append "\"" | ||
| 5525 | (assoc-ref inputs "wl-clipboard") | ||
| 5526 | "/bin/wl-paste\"")))))))) | ||
| 5519 | (home-page "https://github.com/snmsts/trivial-clipboard") | 5527 | (home-page "https://github.com/snmsts/trivial-clipboard") |
| 5520 | (synopsis "Access system clipboard in Common Lisp") | 5528 | (synopsis "Access system clipboard in Common Lisp") |
| 5521 | (description | 5529 | (description |
