diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-07 00:38:55 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-08 11:57:43 +0000 |
commit | 14f364515c9e8326d359587269e0168478768feb (patch) | |
tree | 436b1d2967bb2d53f0c861e61fc13497ccb1b10b | |
parent | f1263f41ed742d89b354241a04d19c0840b86bc4 (diff) | |
download | guix-14f364515c9e8326d359587269e0168478768feb.tar.gz guix-14f364515c9e8326d359587269e0168478768feb.zip |
gnu: Add rust-stc-s-0.1.
* gnu/packages/crates-io.scm (rust-stc-s-0.1): New variable.
Change-Id: Ic6cb2c8f598219126a1d55ed979f42f0cca3e524
Reviewed-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/crates-io.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index db4edce680..3ea1f014ad 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -45,6 +45,7 @@ ;;; Copyright © 2024 Aaron Covrig <aaron.covrig.us@ieee.org> ;;; Copyright © 2024 Nguyễn Gia Phong <mcsinyx@disroot.org> ;;; Copyright © 2024 Jordan Moore <lockbox@struct.foo> +;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -77928,6 +77929,30 @@ instrumenting global allocators.") in @code{stb_truetype.h} from C to Rust.") (license (list license:expat license:asl2.0)))) +(define-public rust-stc-s-0.1 + (package + (name "rust-stc-s") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "stc-s" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0mcvhd50qqysqvd5jqd5ydjyqs3rp2x6irk518lrqn7xlx3cz04p")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-nom" ,rust-nom-7) + ("rust-serde" ,rust-serde-1) + ("rust-serde-json" ,rust-serde-json-1)))) + (home-page "https://github.com/cds-astro/cds-stc-rust/") + (synopsis "STC-S serializer/deserializer with JSON support") + (description + "This package provides Rust implementation of a @acronym{Space-Time +Coordinate,STC-S} serializer/deserializer with JSON support.") + (license (list license:asl2.0 license:expat)))) + (define-public rust-std-prelude-0.2 (package (name "rust-std-prelude") |