diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 12:44:33 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 12:44:33 -0600 |
commit | 3ae3d6946c8f122aebdf60d6c5454b79eef43f82 (patch) | |
tree | f33d6f559f57093ee24283a93be5ea3491c4f428 | |
parent | 9297e376188097102b9757a18acf277227ae7176 (diff) | |
download | guix-msglm-3ae3d6946c8f122aebdf60d6c5454b79eef43f82.tar.gz guix-msglm-3ae3d6946c8f122aebdf60d6c5454b79eef43f82.tar.bz2 guix-msglm-3ae3d6946c8f122aebdf60d6c5454b79eef43f82.zip |
add rust-windows-named-pipe@0.1
-rw-r--r-- | unlustig.scm | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/unlustig.scm b/unlustig.scm index 1e2bad0..edd800e 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -176,7 +176,7 @@ "This package provides Automatically create GUI for clap apps.") (license license:expat))) -(define-public rust-wayland-client-0.28 +(define-public rust-wayland-client-0.28.0 (package (name "rust-wayland-client") (version "0.28.6") @@ -205,3 +205,24 @@ "This package provides Bindings to the standard C implementation of the wayland protocol, client side.") (license license:expat))) +(define-public rust-windows-named-pipe-0.1 + (package + (name "rust-windows-named-pipe") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "windows-named-pipe" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1213q0kpicmb3xhpg4kisp47q68fhpiqxl0sjxjm9k467mdsd2w0")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-kernel32-sys" ,rust-kernel32-sys-0.2) + ("rust-winapi" ,rust-winapi-0.2)))) + (home-page "https://gitlab.com/dgriffen/windows-named-pipe") + (synopsis "Windows named pipes with a unix-socket like interface") + (description + "This package provides Windows named pipes with a unix-socket like interface.") + (license license:bsd-2))) + |