diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 18:36:18 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 18:36:18 -0600 |
commit | 14ff2f4d47db29100f90005b23bde4020e61874f (patch) | |
tree | d46e4fc2e0db85c23f49b23500bb05480e9d3022 | |
parent | 8626100be3be5488876759f63c2f0f7d1512a745 (diff) | |
download | guix-msglm-14ff2f4d47db29100f90005b23bde4020e61874f.tar.gz guix-msglm-14ff2f4d47db29100f90005b23bde4020e61874f.tar.bz2 guix-msglm-14ff2f4d47db29100f90005b23bde4020e61874f.zip |
add rust-core-graphics@0.3
-rw-r--r-- | unlustig.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index fdfa4a3..448129a 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1585,3 +1585,25 @@ binding to JVM APIs from Rust.") "This package provides a macro to generate structures which behave like bitflags.") (license (list license:expat license:asl2.0)))) +(define-public rust-core-graphics-0.3 + (package + (name "rust-core-graphics") + (version "0.3.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "core-graphics" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "08y7si6hiwm25g4a9vdcqzhwpgkqaxabwcfjlyxfsam25c1ccmhc")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-core-foundation" ,rust-core-foundation-0.2) + ("rust-libc" ,rust-libc-0.2) + ("rust-serde" ,rust-serde-0.7)))) + (home-page "https://github.com/servo/core-foundation-rs") + (synopsis "Bindings to Core Graphics for macOS") + (description + "This package provides Bindings to Core Graphics for @code{macOS}.") + (license (list license:expat license:asl2.0)))) + |