mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-09 12:49:45 -05:00
gnu: Add rust-copypasta-0.10.
* gnu/packages/crates-io.scm (rust-copypasta-0.10): New variable. (rust-copypasta-0.8): Inherit from rust-copypasta-0.10. Change-Id: Ifacb857fadfdb9eeb0b917e49b143753d236960f
This commit is contained in:
parent
86415b84e1
commit
6133a3e358
1 changed files with 28 additions and 8 deletions
|
@ -14598,8 +14598,35 @@ (define-public rust-copyless-0.1
|
||||||
the standard library.")
|
the standard library.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-copypasta-0.10
|
||||||
|
(package
|
||||||
|
(name "rust-copypasta")
|
||||||
|
(version "0.10.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "copypasta" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1bk5dby9jyn20d628l0cqjij738q1nqdqp8378f9x7mz951kcdbd"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs (("rust-clipboard-win" ,rust-clipboard-win-3)
|
||||||
|
("rust-objc" ,rust-objc-0.2)
|
||||||
|
("rust-objc-foundation" ,rust-objc-foundation-0.1)
|
||||||
|
("rust-objc-id" ,rust-objc-id-0.1)
|
||||||
|
("rust-smithay-clipboard" ,rust-smithay-clipboard-0.7)
|
||||||
|
("rust-x11-clipboard" ,rust-x11-clipboard-0.8))))
|
||||||
|
(home-page "https://github.com/alacritty/copypasta")
|
||||||
|
(synopsis "Get and set the contents of the OS-level clipboard")
|
||||||
|
(description
|
||||||
|
"Copypasta is a cross-platform library for getting and setting the
|
||||||
|
contents of the OS-level clipboard.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-copypasta-0.8
|
(define-public rust-copypasta-0.8
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-copypasta-0.10)
|
||||||
(name "rust-copypasta")
|
(name "rust-copypasta")
|
||||||
(version "0.8.2")
|
(version "0.8.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
|
@ -14609,7 +14636,6 @@ (define-public rust-copypasta-0.8
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0wmidz38581b1xzpzf466pdaw3xam7nlsn0klndfr973brkwhgqk"))))
|
"0wmidz38581b1xzpzf466pdaw3xam7nlsn0klndfr973brkwhgqk"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-clipboard-win" ,rust-clipboard-win-3)
|
(("rust-clipboard-win" ,rust-clipboard-win-3)
|
||||||
|
@ -14617,13 +14643,7 @@ (define-public rust-copypasta-0.8
|
||||||
("rust-objc-foundation" ,rust-objc-foundation-0.1)
|
("rust-objc-foundation" ,rust-objc-foundation-0.1)
|
||||||
("rust-objc-id" ,rust-objc-id-0.1)
|
("rust-objc-id" ,rust-objc-id-0.1)
|
||||||
("rust-smithay-clipboard" ,rust-smithay-clipboard-0.6)
|
("rust-smithay-clipboard" ,rust-smithay-clipboard-0.6)
|
||||||
("rust-x11-clipboard" ,rust-x11-clipboard-0.7))))
|
("rust-x11-clipboard" ,rust-x11-clipboard-0.7))))))
|
||||||
(home-page "https://github.com/alacritty/copypasta")
|
|
||||||
(synopsis "Get and set the contents of the OS-level clipboard")
|
|
||||||
(description
|
|
||||||
"Copypasta is a cross-platform library for getting and setting the
|
|
||||||
contents of the OS-level clipboard.")
|
|
||||||
(license (list license:expat license:asl2.0))))
|
|
||||||
|
|
||||||
(define-public rust-copypasta-0.7
|
(define-public rust-copypasta-0.7
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue