mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add rust-named-pipe-0.4.
* gnu/packages/crates-windows.scm (rust-named-pipe-0.4): New variable. Change-Id: Ibf1baf32e0245e55c3213ff64bd8e0af67e7d8ff Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
7abd1d8ade
commit
f0b1c89310
1 changed files with 23 additions and 1 deletions
|
@ -16,6 +16,7 @@
|
||||||
;;; Copyright © 2024 Tomas Volf <~@wolfsden.cz>
|
;;; Copyright © 2024 Tomas Volf <~@wolfsden.cz>
|
||||||
;;; Copyright © 2024 Jordan Moore <lockbox@struct.foo>
|
;;; Copyright © 2024 Jordan Moore <lockbox@struct.foo>
|
||||||
;;; Copyright © 2024 Murilo <murilo@disroot.org>
|
;;; Copyright © 2024 Murilo <murilo@disroot.org>
|
||||||
|
;;; Copyright © 2024 normally_js <normally_js@posteo.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -657,6 +658,28 @@ IOCP and Async I/O abstractions.")
|
||||||
#:cargo-development-inputs
|
#:cargo-development-inputs
|
||||||
(("rust-rand" ,rust-rand-0.3))))))
|
(("rust-rand" ,rust-rand-0.3))))))
|
||||||
|
|
||||||
|
(define-public rust-named-pipe-0.4
|
||||||
|
(package
|
||||||
|
(name "rust-named-pipe")
|
||||||
|
(version "0.4.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "named_pipe" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0azby10wzmsrf66m1bysbil0sjfybnvhsa8py093xz4irqy4975d"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t ; failed to resolve: could not find `shared` in `winapi`
|
||||||
|
#:cargo-inputs (("rust-winapi" ,rust-winapi-0.3))))
|
||||||
|
(home-page "https://github.com/blackbeam/named_pipe")
|
||||||
|
(synopsis "Wrapper for overlapped (asyncronous) IO of Windows's named pipes")
|
||||||
|
(description
|
||||||
|
"This package provides a wrapper for overlapped (asyncronous) IO of
|
||||||
|
Windows's named pipes.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-nt-time-0.6
|
(define-public rust-nt-time-0.6
|
||||||
(package
|
(package
|
||||||
(name "rust-nt-time")
|
(name "rust-nt-time")
|
||||||
|
@ -3361,4 +3384,3 @@ windows crate.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"17z8q25pd3dp6b84qm9nlayd3ym78sbryxlqmgcxvz9vpmy8qarz"))))))
|
"17z8q25pd3dp6b84qm9nlayd3ym78sbryxlqmgcxvz9vpmy8qarz"))))))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue