* [bug#73396] [PATCH] gnu: waypipe: Update to 0.9.1.
@ 2024-09-20 21:15 Sisiutl
2024-09-29 16:29 ` bug#73396: " Z572
0 siblings, 1 reply; 2+ messages in thread
From: Sisiutl @ 2024-09-20 21:15 UTC (permalink / raw)
To: 73396; +Cc: Sisiutl
* gnu/packages/freedesktop.scm (waypipe): Update to 0.9.1.
[inputs]: Add lz4, libva, mesa, libdrm and ffmpeg.
[arguments]<#:configure-flags?>: Enable lz4, vaapi, dmabuf
and video compression.
Change-Id: I02891d0fbb0f697083d4599cf960005bbe0b8996
---
gnu/packages/freedesktop.scm | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 993bb84ec6..e9f6841f7c 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -3244,7 +3244,7 @@ (define-public poweralertd
(define-public waypipe
(package
(name "waypipe")
- (version "0.9.0")
+ (version "0.9.1")
(source
(origin
(method git-fetch)
@@ -3253,12 +3253,17 @@ (define-public waypipe
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0pf1q8kyqyqa7gxar99i35q9np0k4vsf7xlrg12gyzc5k36lhknf"))))
+ (base32 "0pj7l3ix0pp0sfqxfa2hxql0f30vz6hh01fq5kzhs831b632i3z0"))))
(build-system meson-build-system)
(native-inputs
(list pkg-config scdoc
;; For tests
python))
+ (inputs (list lz4 libva mesa libdrm ffmpeg))
+ (arguments
+ `(#:configure-flags
+ ,#~'("-Dwith_lz4=enabled" "-Dwith_vaapi=enabled"
+ "-Dwith_dmabuf=enabled" "-Dwith_video=enabled")))
(home-page "https://gitlab.freedesktop.org/mstoeckl/waypipe")
(synopsis "Proxy for Wayland protocol applications")
(description
--
2.46.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#73396: [PATCH] gnu: waypipe: Update to 0.9.1.
2024-09-20 21:15 [bug#73396] [PATCH] gnu: waypipe: Update to 0.9.1 Sisiutl
@ 2024-09-29 16:29 ` Z572
0 siblings, 0 replies; 2+ messages in thread
From: Z572 @ 2024-09-29 16:29 UTC (permalink / raw)
To: Sisiutl; +Cc: 73396-done
[-- Attachment #1: Type: text/plain, Size: 2047 bytes --]
Sisiutl <sisiutl@egregore.fun> writes:
> * gnu/packages/freedesktop.scm (waypipe): Update to 0.9.1.
> [inputs]: Add lz4, libva, mesa, libdrm and ffmpeg.
> [arguments]<#:configure-flags?>: Enable lz4, vaapi, dmabuf
> and video compression.
>
> Change-Id: I02891d0fbb0f697083d4599cf960005bbe0b8996
> ---
> gnu/packages/freedesktop.scm | 9 +++++++--
> 1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
> index 993bb84ec6..e9f6841f7c 100644
> --- a/gnu/packages/freedesktop.scm
> +++ b/gnu/packages/freedesktop.scm
> @@ -3244,7 +3244,7 @@ (define-public poweralertd
> (define-public waypipe
> (package
> (name "waypipe")
> - (version "0.9.0")
> + (version "0.9.1")
> (source
> (origin
> (method git-fetch)
> @@ -3253,12 +3253,17 @@ (define-public waypipe
> (commit (string-append "v" version))))
> (file-name (git-file-name name version))
> (sha256
> - (base32 "0pf1q8kyqyqa7gxar99i35q9np0k4vsf7xlrg12gyzc5k36lhknf"))))
> + (base32 "0pj7l3ix0pp0sfqxfa2hxql0f30vz6hh01fq5kzhs831b632i3z0"))))
> (build-system meson-build-system)
> (native-inputs
> (list pkg-config scdoc
> ;; For tests
> python))
> + (inputs (list lz4 libva mesa libdrm ffmpeg))
> + (arguments
> + `(#:configure-flags
> + ,#~'("-Dwith_lz4=enabled" "-Dwith_vaapi=enabled"
> + "-Dwith_dmabuf=enabled" "-Dwith_video=enabled")))
adjust to
(list #:configure-flags
#~(list "-Dwith_lz4=enabled"
"-Dwith_vaapi=enabled" "-Dwith_dmabuf=enabled"
"-Dwith_video=enabled"))
The best is #~(list...) ,so can write functions and stuff in there
> (home-page "https://gitlab.freedesktop.org/mstoeckl/waypipe")
> (synopsis "Proxy for Wayland protocol applications")
> (description
"guix size" say now is 765.5 MiB, before was 75.7 MiB, Maybe add a
waypipe-minimal?
push, and close.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-09-29 16:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-20 21:15 [bug#73396] [PATCH] gnu: waypipe: Update to 0.9.1 Sisiutl
2024-09-29 16:29 ` bug#73396: " Z572
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.