diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-12-27 14:38:17 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-20 13:56:57 +0200 |
commit | 7b29b2d7a60aeb91b81452591379595b2f5de2df (patch) | |
tree | ab2b49e141e21d90668756dda125183f93fa9406 /gnu/packages | |
parent | c368b4e5385a1a81d2429fb32f4234962ef9df02 (diff) | |
download | guix-7b29b2d7a60aeb91b81452591379595b2f5de2df.tar.gz |
gnu: rust-nickel-0.11: Move to (gnu packages crates-web).
* gnu/packages/crates-io.scm (rust-nickel-0.11): Move from here ... * gnu/packages/crates-web.scm: ... to here. Change-Id: I665d74fb547668b9f2a78d23e49d56a3c3b8ef65
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/crates-io.scm | 37 | ||||
-rw-r--r-- | gnu/packages/crates-web.scm | 37 |
2 files changed, 37 insertions, 37 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index c5987cde62..3193eb0d86 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -42942,43 +42942,6 @@ structures.") (description "NibbleVec is a data structure for storing a sequence of half-bytes.") (license license:expat))) -(define-public rust-nickel-0.11 - (package - (name "rust-nickel") - (version "0.11.0") - (source - (origin - (method url-fetch) - (uri (crate-uri "nickel" version)) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 "1na619j2k0hkv5qhws7ccibzhn1v637f1vqwnsn2vnr84y1il1p5")))) - (build-system cargo-build-system) - (arguments - `(#:skip-build? #t - #:cargo-inputs - (("rust-compiletest-rs" ,rust-compiletest-rs-0.3) - ("rust-groupable" ,rust-groupable-0.2) - ("rust-hyper" ,rust-hyper-0.10) - ("rust-lazy-static" ,rust-lazy-static-1) - ("rust-log" ,rust-log-0.3) - ("rust-modifier" ,rust-modifier-0.1) - ("rust-mustache" ,rust-mustache-0.9) - ("rust-plugin" ,rust-plugin-0.2) - ("rust-regex" ,rust-regex-1) - ("rust-serde" ,rust-serde-1) - ("rust-serde-json" ,rust-serde-json-1) - ("rust-time" ,rust-time-0.1) - ("rust-typemap" ,rust-typemap-0.3) - ("rust-url" ,rust-url-1)))) - (home-page "https://nickel-org.github.io/") - (synopsis "Web application framework for Rust") - (description - "@code{nickel.rs} is a simple and lightweight foundation for web -applications written in Rust. Its API is inspired by the popular -@code{express} framework for JavaScript.") - (license license:expat))) - (define-public rust-nitrokey-0.9 (package (name "rust-nitrokey") diff --git a/gnu/packages/crates-web.scm b/gnu/packages/crates-web.scm index e92b807f57..a1c0de634f 100644 --- a/gnu/packages/crates-web.scm +++ b/gnu/packages/crates-web.scm @@ -2277,6 +2277,43 @@ bottlenecks encountered in highly concurrent code by avoiding shared writes and locking in the core framework.") (license license:expat))) +(define-public rust-nickel-0.11 + (package + (name "rust-nickel") + (version "0.11.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "nickel" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1na619j2k0hkv5qhws7ccibzhn1v637f1vqwnsn2vnr84y1il1p5")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs + (("rust-compiletest-rs" ,rust-compiletest-rs-0.3) + ("rust-groupable" ,rust-groupable-0.2) + ("rust-hyper" ,rust-hyper-0.10) + ("rust-lazy-static" ,rust-lazy-static-1) + ("rust-log" ,rust-log-0.3) + ("rust-modifier" ,rust-modifier-0.1) + ("rust-mustache" ,rust-mustache-0.9) + ("rust-plugin" ,rust-plugin-0.2) + ("rust-regex" ,rust-regex-1) + ("rust-serde" ,rust-serde-1) + ("rust-serde-json" ,rust-serde-json-1) + ("rust-time" ,rust-time-0.1) + ("rust-typemap" ,rust-typemap-0.3) + ("rust-url" ,rust-url-1)))) + (home-page "https://nickel-org.github.io/") + (synopsis "Web application framework for Rust") + (description + "@code{nickel.rs} is a simple and lightweight foundation for web +applications written in Rust. Its API is inspired by the popular +@code{express} framework for JavaScript.") + (license license:expat))) + (define-public rust-rocket-0.4 (package (name "rust-rocket") |