diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 19:39:08 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 19:39:08 -0600 |
commit | 9d70a3935c0250a3d21f7b204c36f0cd32891e11 (patch) | |
tree | 1f62db6f76fabe8d523900497ced3f909e458d6d | |
parent | 56335031608429ce8e0c1ec2ef44829fc751c5fb (diff) | |
download | guix-msglm-9d70a3935c0250a3d21f7b204c36f0cd32891e11.tar.gz guix-msglm-9d70a3935c0250a3d21f7b204c36f0cd32891e11.tar.bz2 guix-msglm-9d70a3935c0250a3d21f7b204c36f0cd32891e11.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))) + |