diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:06 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:06 -0500 |
commit | 8a67333ea8a97788779529649e517c161127e76b (patch) | |
tree | 1f62db6f76fabe8d523900497ced3f909e458d6d | |
parent | 427fd7ddebedd6328e358cf1b5e327d1f8012673 (diff) | |
download | guix-techchud-8a67333ea8a97788779529649e517c161127e76b.tar.gz guix-techchud-8a67333ea8a97788779529649e517c161127e76b.tar.bz2 guix-techchud-8a67333ea8a97788779529649e517c161127e76b.zip |
add rust-dlib@0.3
-rw-r--r-- | unlustig.scm | 21 |
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))) + |