gnu: Add rust-boxfnonce-0.1.
* gnu/packages/crates-io.scm (rust-boxfnonce-0.1): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>master
parent
e7195e83c8
commit
e1e077e972
|
@ -12,6 +12,7 @@
|
|||
;;; Copyright © 2020 André Batista <nandre@riseup.net>
|
||||
;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
|
||||
;;; Copyright © 2020 Antoine Côté <antoine.cote@posteo.net>
|
||||
;;; Copyright © 2021 aecepoglu <aecepoglu@fastmail.fm>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -4294,6 +4295,24 @@ programs.")
|
|||
("rust-parking" ,rust-parking-1)
|
||||
("rust-waker-fn" ,rust-waker-fn-1))))))
|
||||
|
||||
(define-public rust-boxfnonce-0.1
|
||||
(package
|
||||
(name "rust-boxfnonce")
|
||||
(version "0.1.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "boxfnonce" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "09ilf4zyx92hyhkxlsxksfyprzr9iwq5gqqb22aaqr32c8fwp22r"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments `(#:skip-build? #t))
|
||||
(home-page "https://github.com/stbuehler/rust-boxfnonce")
|
||||
(synopsis "Safe FnOnce boxing for Rust")
|
||||
(description "This package provides a safe FnOnce boxing for Rust.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-bresenham-0.1
|
||||
(package
|
||||
(name "rust-bresenham")
|
||||
|
|
Reference in New Issue