mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05: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 @@ (define-public rust-clicolors-control-1
|
|||
colorization.")
|
||||
(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
|
||||
(package
|
||||
(name "rust-clippy")
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
;;; Copyright © 2022 Zheng Junjie <873216071@qq.com>
|
||||
;;; Copyright © 2022 ( <paren@disroot.org>
|
||||
;;; 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 Daniel Ziltener <dziltener@lyrion.ch>
|
||||
;;;
|
||||
|
@ -96,6 +96,48 @@ (define-public rust-cargo-credential-wincred-0.3
|
|||
Windows Credential Manager.")
|
||||
(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
|
||||
(package
|
||||
(name "rust-conpty")
|
||||
|
|
Loading…
Reference in a new issue