summaryrefslogtreecommitdiffstats
path: root/unlustig.scm
diff options
context:
space:
mode:
authortechchud <protrude_paying969@simplelogin.com>2025-08-17 19:24:06 -0500
committertechchud <protrude_paying969@simplelogin.com>2025-08-17 19:24:06 -0500
commit8a67333ea8a97788779529649e517c161127e76b (patch)
tree1f62db6f76fabe8d523900497ced3f909e458d6d /unlustig.scm
parent427fd7ddebedd6328e358cf1b5e327d1f8012673 (diff)
downloadguix-techchud-8a67333ea8a97788779529649e517c161127e76b.tar.gz
guix-techchud-8a67333ea8a97788779529649e517c161127e76b.tar.bz2
guix-techchud-8a67333ea8a97788779529649e517c161127e76b.zip
add rust-dlib@0.3
Diffstat (limited to 'unlustig.scm')
-rw-r--r--unlustig.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm
index d8b8cd8..4e7d4f2 100644
--- a/unlustig.scm
+++ b/unlustig.scm
@@ -1946,3 +1946,24 @@ wayland-client.")
See winapi for types and constants.")
(license license:expat)))
+(define-public rust-dlib-0.3
+ (package
+ (name "rust-dlib")
+ (version "0.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "dlib" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1v36322ilmdd1w3kh2xhm58ma9mxq9i4xdcwy84lav63w56cx2ql"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-libloading" ,rust-libloading-0.3))))
+ (home-page "https://github.com/elinorbgr/dlib")
+ (synopsis
+ "Helper macros for handling manually loading optional system libraries")
+ (description
+ "This package provides Helper macros for handling manually loading optional system libraries.")
+ (license license:expat)))
+