diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:05 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:05 -0500 |
commit | 18e79f1470a319f18b4fe2cb0b173474c5bfec0f (patch) | |
tree | 3ed0dfb17df59c36675d94dce16774b9e5689c64 | |
parent | 7dc94a922df026317ceb976f9e4d619fa24487e4 (diff) | |
download | guix-techchud-18e79f1470a319f18b4fe2cb0b173474c5bfec0f.tar.gz guix-techchud-18e79f1470a319f18b4fe2cb0b173474c5bfec0f.tar.bz2 guix-techchud-18e79f1470a319f18b4fe2cb0b173474c5bfec0f.zip |
add rust-cgl@0.1
-rw-r--r-- | unlustig.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 39b0446..afb33e6 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1431,3 +1431,23 @@ binding to JVM APIs from Rust.") (description "This package provides Glue for the Android JNI.") (license license:expat))) +(define-public rust-cgl-0.1 + (package + (name "rust-cgl") + (version "0.1.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "cgl" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "044cycnn760gki4jnvsagwr3wds9pdmnpgsx8ysrqwsslv67ipcb")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-gleam" ,rust-gleam-0.2) + ("rust-libc" ,rust-libc-0.2)))) + (home-page "https://github.com/servo/cgl-rs") + (synopsis "Rust bindings for CGL on Mac") + (description "This package provides Rust bindings for CGL on Mac.") + (license (list license:expat license:asl2.0)))) + |