diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 19:35:19 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 19:35:19 -0600 |
commit | 56335031608429ce8e0c1ec2ef44829fc751c5fb (patch) | |
tree | 1065f7a275dd4e94fc1209da6bd9398139b8e4d7 | |
parent | 3bb612ab9e2fdc4ec6f369da2b6f30b716bb84e9 (diff) | |
download | guix-msglm-56335031608429ce8e0c1ec2ef44829fc751c5fb.tar.gz guix-msglm-56335031608429ce8e0c1ec2ef44829fc751c5fb.tar.bz2 guix-msglm-56335031608429ce8e0c1ec2ef44829fc751c5fb.zip |
add rust-user32-sys@0.1
-rw-r--r-- | unlustig.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index b233020..d8b8cd8 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1923,3 +1923,26 @@ See winapi for types and constants.") wayland-client.") (license license:expat))) +(define-public rust-user32-sys-0.1 + (package + (name "rust-user32-sys") + (version "0.1.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "user32-sys" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "02pqzgm7qfdvlb0zqry98h76zwvaq19idd99i0ch8b4m7fc1kdz6")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-winapi" ,rust-winapi-0.2) + ("rust-winapi-build" ,rust-winapi-build-0.1)))) + (home-page "https://github.com/retep998/winapi-rs") + (synopsis + "Contains function definitions for the Windows API library user32. See winapi for types and constants") + (description + "This package contains function definitions for the Windows API library user32. +See winapi for types and constants.") + (license license:expat))) + |