diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 18:29:50 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 18:29:50 -0600 |
commit | 8626100be3be5488876759f63c2f0f7d1512a745 (patch) | |
tree | 05ef8886d4a40bc9c1b58f3b4d7a37b70077346a | |
parent | b7d46466799ef2d5eab9e80754a5165c31dcb073 (diff) | |
download | guix-msglm-8626100be3be5488876759f63c2f0f7d1512a745.tar.gz guix-msglm-8626100be3be5488876759f63c2f0f7d1512a745.tar.bz2 guix-msglm-8626100be3be5488876759f63c2f0f7d1512a745.zip |
add rust-bitflags@0.3
-rw-r--r-- | unlustig.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 24923e1..fdfa4a3 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1567,3 +1567,21 @@ binding to JVM APIs from Rust.") (description "This package provides Bindings to Cocoa for @code{macOS}.") (license (list license:expat license:asl2.0)))) +(define-public rust-bitflags-0.3 + (package + (name "rust-bitflags") + (version "0.3.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "bitflags" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "171qfyjn5z86z6i5jynpwmwf03m8n6hql5di3n5l6kiw216nz1ij")))) + (build-system cargo-build-system) + (home-page "https://github.com/bitflags/bitflags") + (synopsis "macro to generate structures which behave like bitflags.") + (description + "This package provides a macro to generate structures which behave like bitflags.") + (license (list license:expat license:asl2.0)))) + |