diff options
author | Chloe Brown <chloe.brown.00@outlook.com> | 2022-11-04 01:09:06 +0000 |
---|---|---|
committer | Chloe Brown <chloe.brown.00@outlook.com> | 2022-11-04 01:09:06 +0000 |
commit | 338b4a53db9fba5c143d6aac49111fa33eee7484 (patch) | |
tree | 316b68347f2686d8cf79b5d4008a486f0c080bff | |
parent | 9d2a858f8fa3d3534b05237540be96acdd793375 (diff) |
rust-enumflags2: salvage from guix graveyard.
-rw-r--r-- | yellowsquid/packages/crates-io.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/yellowsquid/packages/crates-io.scm b/yellowsquid/packages/crates-io.scm index 6a7c64b..32a7a08 100644 --- a/yellowsquid/packages/crates-io.scm +++ b/yellowsquid/packages/crates-io.scm @@ -837,6 +837,27 @@ for inter-process communication.") (description "Rust binding for dns-sd") (license license:expat))) +(define-public rust-enumflags2-0.6 + (package + (name "rust-enumflags2") + (version "0.6.4") + (source (origin + (method url-fetch) + (uri (crate-uri "enumflags2" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "182xd6cxxmadx1axnz6x73d12pzgwkc712zq2lxd4z1k48lxij43")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-enumflags2-derive" ,rust-enumflags2-derive-0.6) + ("rust-serde" ,rust-serde-1)) + #:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.3)))) + (home-page "https://github.com/NieDzejkob/enumflags2") + (synopsis "Enum-based bit flags") + (description "Enum-based bit flags") + (license (list license:expat license:asl2.0)))) + (define-public rust-fetch-unroll-0.3 (package (name "rust-fetch-unroll") |