mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-10 21:50:01 +01:00
gnu: rust-clipboard-win: Move to (gnu packages crates-windows).
* gnu/packages/crates-io.scm (rust-clipboard-win-4, rust-clipboard-win-3): Move from here ... * gnu/packages/crates-windows.scm: ... to here. Change-Id: I72c54d9458a335dc053ca204b2382394b5e2c5c1
This commit is contained in:
parent
8b379ea6ca
commit
fc5de28e86
2 changed files with 43 additions and 43 deletions
|
@ -12162,48 +12162,6 @@ stream of tokens.")
|
||||||
colorization.")
|
colorization.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-clipboard-win-4
|
|
||||||
(package
|
|
||||||
(name "rust-clipboard-win")
|
|
||||||
(version "4.2.1")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "clipboard-win" version))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32 "1a1cpp4yyizz41bkij5x85p220xxrlja6l6wwj9wkvwj364a2kjf"))))
|
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:skip-build? #t
|
|
||||||
#:cargo-inputs
|
|
||||||
(("rust-error-code" ,rust-error-code-2)
|
|
||||||
("rust-str-buf" ,rust-str-buf-1)
|
|
||||||
("rust-winapi" ,rust-winapi-0.3))))
|
|
||||||
(home-page "https://github.com/DoumanAsh/clipboard-win")
|
|
||||||
(synopsis "Simple way to interact with Windows clipboard")
|
|
||||||
(description
|
|
||||||
"This package provides simple way to interact with Windows clipboard.")
|
|
||||||
(license license:boost1.0)))
|
|
||||||
|
|
||||||
(define-public rust-clipboard-win-3
|
|
||||||
(package
|
|
||||||
(inherit rust-clipboard-win-4)
|
|
||||||
(name "rust-clipboard-win")
|
|
||||||
(version "3.1.1")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "clipboard-win" version))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32 "0hh3npqfa1lfn62fwvkmjlpfnizq343a994b898ffsvb100mxpwz"))))
|
|
||||||
(arguments
|
|
||||||
`(#:skip-build? #t
|
|
||||||
#:cargo-inputs
|
|
||||||
(("rust-lazy-bytes-cast" ,rust-lazy-bytes-cast-5)
|
|
||||||
("rust-winapi" ,rust-winapi-0.3))))))
|
|
||||||
|
|
||||||
(define-public rust-clippy-0.0
|
(define-public rust-clippy-0.0
|
||||||
(package
|
(package
|
||||||
(name "rust-clippy")
|
(name "rust-clippy")
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
;;; Copyright © 2022 Zheng Junjie <873216071@qq.com>
|
;;; Copyright © 2022 Zheng Junjie <873216071@qq.com>
|
||||||
;;; Copyright © 2022 ( <paren@disroot.org>
|
;;; Copyright © 2022 ( <paren@disroot.org>
|
||||||
;;; Copyright © 2022, 2023 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2022, 2023 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2023 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2022, 2023 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2023 Jaeme Sifat <jaeme@runbox.com>
|
;;; Copyright © 2023 Jaeme Sifat <jaeme@runbox.com>
|
||||||
;;; Copyright © 2023 Daniel Ziltener <dziltener@lyrion.ch>
|
;;; Copyright © 2023 Daniel Ziltener <dziltener@lyrion.ch>
|
||||||
;;;
|
;;;
|
||||||
|
@ -96,6 +96,48 @@
|
||||||
Windows Credential Manager.")
|
Windows Credential Manager.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-clipboard-win-4
|
||||||
|
(package
|
||||||
|
(name "rust-clipboard-win")
|
||||||
|
(version "4.2.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "clipboard-win" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1a1cpp4yyizz41bkij5x85p220xxrlja6l6wwj9wkvwj364a2kjf"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-error-code" ,rust-error-code-2)
|
||||||
|
("rust-str-buf" ,rust-str-buf-1)
|
||||||
|
("rust-winapi" ,rust-winapi-0.3))))
|
||||||
|
(home-page "https://github.com/DoumanAsh/clipboard-win")
|
||||||
|
(synopsis "Simple way to interact with Windows clipboard")
|
||||||
|
(description
|
||||||
|
"This package provides simple way to interact with Windows clipboard.")
|
||||||
|
(license license:boost1.0)))
|
||||||
|
|
||||||
|
(define-public rust-clipboard-win-3
|
||||||
|
(package
|
||||||
|
(inherit rust-clipboard-win-4)
|
||||||
|
(name "rust-clipboard-win")
|
||||||
|
(version "3.1.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "clipboard-win" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0hh3npqfa1lfn62fwvkmjlpfnizq343a994b898ffsvb100mxpwz"))))
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-lazy-bytes-cast" ,rust-lazy-bytes-cast-5)
|
||||||
|
("rust-winapi" ,rust-winapi-0.3))))))
|
||||||
|
|
||||||
(define-public rust-conpty-0.5
|
(define-public rust-conpty-0.5
|
||||||
(package
|
(package
|
||||||
(name "rust-conpty")
|
(name "rust-conpty")
|
||||||
|
|
Loading…
Add table
Reference in a new issue