mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add rust-swayipc-3.
* gnu/packages/crates-io.scm (rust-swayipc-3): New variable. Signed-off-by: Andrew Tropin <andrew@trop.in>
This commit is contained in:
parent
2db12d3c31
commit
655956131c
1 changed files with 27 additions and 8 deletions
|
@ -55725,8 +55725,34 @@ (define-public rust-sval-derive-1
|
||||||
(description "This package provides custom derive for @code{sval}.")
|
(description "This package provides custom derive for @code{sval}.")
|
||||||
(license (list license:asl2.0 license:expat))))
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-swayipc-3
|
||||||
|
(package
|
||||||
|
(name "rust-swayipc")
|
||||||
|
(version "3.0.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "swayipc" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "16pf4r6svf99p73b8dhdannkvhfvmbjb4rx7gifxh8xj53rwy7db"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-serde" ,rust-serde-1)
|
||||||
|
("rust-serde-json" ,rust-serde-json-1)
|
||||||
|
("rust-swayipc-types" ,rust-swayipc-types-1))))
|
||||||
|
(home-page "https://github.com/jaycefayne/swayipc-rs")
|
||||||
|
(synopsis "Library for controlling sway through its IPC interface")
|
||||||
|
(description
|
||||||
|
"This package provides a library for controlling sway through its IPC
|
||||||
|
interface.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-swayipc-2
|
(define-public rust-swayipc-2
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-swayipc-3)
|
||||||
(name "rust-swayipc")
|
(name "rust-swayipc")
|
||||||
(version "2.7.2")
|
(version "2.7.2")
|
||||||
(source
|
(source
|
||||||
|
@ -55736,20 +55762,13 @@ (define-public rust-swayipc-2
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "03r15c2sijyrxmpsyjgma4gz7zmdl1g8akjnjkw6hrml91d5dilj"))))
|
(base32 "03r15c2sijyrxmpsyjgma4gz7zmdl1g8akjnjkw6hrml91d5dilj"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; test sync::tests::connect ... FAILED
|
`(#:tests? #f ; test sync::tests::connect ... FAILED
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
(("rust-serde" ,rust-serde-1)
|
(("rust-serde" ,rust-serde-1)
|
||||||
("rust-async-std" ,rust-async-std-1)
|
("rust-async-std" ,rust-async-std-1)
|
||||||
("rust-swayipc-command-builder" ,rust-swayipc-command-builder-0.1)
|
("rust-swayipc-command-builder" ,rust-swayipc-command-builder-0.1)
|
||||||
("rust-serde-json" ,rust-serde-json-1))))
|
("rust-serde-json" ,rust-serde-json-1))))))
|
||||||
(home-page "https://github.com/jaycefayne/swayipc-rs")
|
|
||||||
(synopsis "Library for controlling sway through its IPC interface")
|
|
||||||
(description
|
|
||||||
"This package provides a library for controlling sway through its IPC
|
|
||||||
interface.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public rust-swayipc-command-builder-0.1
|
(define-public rust-swayipc-command-builder-0.1
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue