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:
Efraim Flashner 2023-04-23 17:53:18 +03:00
parent 1b8cf9a128
commit 7b0767fb64
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -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