diff options
author | msglm <msglm@techchud.xyz> | 2025-01-22 08:29:29 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-01-22 08:29:29 -0600 |
commit | f8955038465efcf4f5c5135cbb9a950ac9f81fac (patch) | |
tree | ab7f3b671dbb19fa84164108c9a8f34b2bb10d8b /unlustig.scm | |
parent | 1dee682950e18408a4bf5747bc9d988a525be6d8 (diff) | |
download | guix-msglm-f8955038465efcf4f5c5135cbb9a950ac9f81fac.tar.gz guix-msglm-f8955038465efcf4f5c5135cbb9a950ac9f81fac.tar.bz2 guix-msglm-f8955038465efcf4f5c5135cbb9a950ac9f81fac.zip |
add rust-core-foundation-0.2
Diffstat (limited to 'unlustig.scm')
-rw-r--r-- | unlustig.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 6b00dac..fb724de 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -2189,3 +2189,24 @@ binding to JVM APIs from Rust") "This package provides Automatic property based testing with shrinking.") (license (list license:unlicense license:expat)))) +(define-public rust-core-foundation-0.2 + (package + (name "rust-core-foundation") + (version "0.2.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "core-foundation" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0rvcn7ab5r69wvn7gby745jlpy8pirfywcdxbiypy083s93dggr5")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-core-foundation-sys" ,rust-core-foundation-sys-0.2) + ("rust-libc" ,rust-libc-0.2)))) + (home-page "https://github.com/servo/core-foundation-rs") + (synopsis "Bindings to Core Foundation for macOS") + (description + "This package provides Bindings to Core Foundation for @code{macOS}.") + (license (list license:expat license:asl2.0)))) + |