summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2025-02-09 19:43:24 -0600
committermsglm <msglm@techchud.xyz>2025-02-09 19:43:24 -0600
commit4ba583ca5822100f2c4491e301049ac305e79722 (patch)
tree54f4e65d556f450e9766246ece1eb3910a0e7021
parentbfd9fe265ee98b33d54a288e6a5968f5e34b7e41 (diff)
downloadguix-msglm-4ba583ca5822100f2c4491e301049ac305e79722.tar.gz
guix-msglm-4ba583ca5822100f2c4491e301049ac305e79722.tar.bz2
guix-msglm-4ba583ca5822100f2c4491e301049ac305e79722.zip
add rust-libloading@0.3
-rw-r--r--unlustig.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm
index 902a9ce..05d6976 100644
--- a/unlustig.scm
+++ b/unlustig.scm
@@ -2031,3 +2031,28 @@ the crate wayland-client for usable bindings.")
"This package provides a macro for declaring lazily evaluated statics in Rust.")
(license license:expat)))
+(define-public rust-libloading-0.3
+ (package
+ (name "rust-libloading")
+ (version "0.3.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "libloading" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0risz19rllhdc0d7nkpwkf4pcbjjgg1iim0kkmzb6kkp874hl0ha"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-kernel32-sys" ,rust-kernel32-sys-0.2)
+ ("rust-lazy-static" ,rust-lazy-static-0.2)
+ ("rust-target-build-utils" ,rust-target-build-utils-0.3)
+ ("rust-winapi" ,rust-winapi-0.2))))
+ (home-page "https://github.com/nagisa/rust_libloading/")
+ (synopsis
+ "Bindings around the platform's dynamic library loading primitives with greatly improved memory safety")
+ (description
+ "This package provides Bindings around the platform's dynamic library loading primitives with greatly
+improved memory safety.")
+ (license license:isc)))
+