me
/
guix
Archived
1
0
Fork 0

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
aecepoglu 2021-02-04 14:35:39 +03:00 committed by Nicolas Goaziou
parent e7195e83c8
commit e1e077e972
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 19 additions and 0 deletions

View File

@ -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")