mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-21 01:26:43 +01:00
gnu: Add rust-x11-clipboard-0.7.
* gnu/packages/crates-graphics.scm (rust-x11-clipboard-0.7): New variable. (rust-x11-clipboard-0.5): Inherit from rust-x11-clipboard-0.7.
This commit is contained in:
parent
1b8cf9a128
commit
7b0767fb64
1 changed files with 22 additions and 6 deletions
|
@ -3609,8 +3609,29 @@ (define-public rust-x11rb-0.8
|
|||
(description "This package provides Rust bindings to X11")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-x11-clipboard-0.7
|
||||
(package
|
||||
(name "rust-x11-clipboard")
|
||||
(version "0.7.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "x11-clipboard" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0r3lgslbbdf0mb914n0f9q2pqci407r1pcddwbl7sfvc4alrl2wq"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; Wants a running X server.
|
||||
#:cargo-inputs (("rust-x11rb" ,rust-x11rb-0.10))))
|
||||
(home-page "https://github.com/quininer/x11-clipboard")
|
||||
(synopsis "x11 clipboard support for Rust")
|
||||
(description "This package provides x11 clipboard support for Rust.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-x11-clipboard-0.5
|
||||
(package
|
||||
(inherit rust-x11-clipboard-0.7)
|
||||
(name "rust-x11-clipboard")
|
||||
(version "0.5.1")
|
||||
(source
|
||||
|
@ -3620,15 +3641,10 @@ (define-public rust-x11-clipboard-0.5
|
|||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "17c5yxxhknrp7y9mc7mp85ra8q4jw12c174m9yzbfr1vs2pkgsg5"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-xcb" ,rust-xcb-0.9))))
|
||||
(home-page "https://github.com/quininer/x11-clipboard")
|
||||
(synopsis "x11 clipboard support for Rust")
|
||||
(description "This package provides x11 clipboard support for Rust.")
|
||||
(license license:expat)))
|
||||
(("rust-xcb" ,rust-xcb-0.9))))))
|
||||
|
||||
(define-public rust-x11-dl-2
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue