From a50d4f70caf3b738dc8315f1c9a47d818e562df4 Mon Sep 17 00:00:00 2001 From: Declan Tsien Date: Thu, 6 Oct 2022 08:16:15 +0800 Subject: [PATCH 06/13] gnu: Add rust-greetd-ipc-0.8. * gnu/packages/crates-io.scm (rust-greetd-ipc-0.8): New variable. --- gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 10284331ee..f3350e6e37 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -26453,6 +26453,29 @@ (define-public rust-goblin-0.0 loading crate.") (license license:expat))) +(define-public rust-greetd-ipc-0.8 + (package + (name "rust-greetd-ipc") + (version "0.8.0") + (source (origin + (method url-fetch) + (uri (crate-uri "greetd_ipc" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1dscriv3adjyaxfaax3cmqrzx6q2vwwchbh86dhll783wjc4ivw0")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-async-trait" ,rust-async-trait-0.1) + ("rust-serde" ,rust-serde-1) + ("rust-serde-json" ,rust-serde-json-1) + ("rust-thiserror" ,rust-thiserror-1) + ("rust-tokio" ,rust-tokio-1)))) + (home-page "https://git.sr.ht/~kennylevinsen/greetd") + (synopsis "An implementation of the greetd IPC protocol") + (description "An implementation of the greetd IPC protocol.") + (license license:gpl3))) + (define-public rust-grep-0.2 (package (name "rust-grep") -- 2.37.3