diff options
-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)))) + |