* [bug#60995] [PATCH] gnu: Add obs-vkcapture.
@ 2023-01-21 20:12 Ott via Guix-patches via
2023-01-21 21:38 ` [bug#60995] [PATCH v2] " Ott via Guix-patches via
2023-01-21 22:33 ` [bug#60995] [PATCH v3 0/1] Thanks for the help Ott via Guix-patches via
0 siblings, 2 replies; 5+ messages in thread
From: Ott via Guix-patches via @ 2023-01-21 20:12 UTC (permalink / raw)
To: 60995; +Cc: Ott Joon
From: Ott Joon <oj@vern.cc>
* gnu/packages/video.scm (obs-vkcapture): New variable.
---
gnu/packages/video.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 60d39c38dc..76b7af0b8d 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -63,6 +63,7 @@
;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan@gmail.com>
;;; Copyright © 2022 Chadwain Holness <chadwainholness@gmail.com>
;;; Copyright © 2022 Andy Tai <atai@atai.org>
+;;; Copyright © 2023 Ott Joon <oj@vern.cc>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -3571,6 +3572,37 @@ (define-public obs-wlrobs
Wayland compositors.")
(license license:gpl3+)))
+(define-public obs-vkcapture
+ (package
+ (name "obs-vkcapture")
+ (version "1.3.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/nowrep/obs-vkcapture")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "18v15bfzm31qkpwipvbqgzak4z6f2hhq6mnz2bvhwnv57whirln6"))))
+ (build-system cmake-build-system)
+ (arguments '(#:tests? #f))
+ (native-inputs (list pkg-config))
+ (inputs (list mesa
+ obs
+ libx11
+ libxcb
+ vulkan-headers
+ vulkan-loader
+ wayland))
+ (home-page "https://git.sr.ht/~bl4ckb0ne/wxrc")
+ (synopsis "OBS plugin for Vulkan/OpenGL game capture on Linux")
+ (description "This OBS plugin lets you record an OpenGL or Vulkan
+game by adding the Game Capture source to your scene and starting an
+application with @code{obs-gamecapture}.")
+ (license license:gpl2)))
+
(define-public libvdpau
(package
(name "libvdpau")
base-commit: 2491a60404b69da20c2b4fd952e5d5e326374d1d
--
2.38.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#60995] [PATCH v2] gnu: Add obs-vkcapture
2023-01-21 20:12 [bug#60995] [PATCH] gnu: Add obs-vkcapture Ott via Guix-patches via
@ 2023-01-21 21:38 ` Ott via Guix-patches via
2023-01-21 22:33 ` [bug#60995] [PATCH v3 0/1] Thanks for the help Ott via Guix-patches via
1 sibling, 0 replies; 5+ messages in thread
From: Ott via Guix-patches via @ 2023-01-21 21:38 UTC (permalink / raw)
To: 60995; +Cc: Ott
* gnu/packages/video.scm (obs-vkcapture): New variable.
---
gnu/packages/video.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 76b7af0b8d..62fea0d341 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -3596,7 +3596,7 @@ (define-public obs-vkcapture
vulkan-headers
vulkan-loader
wayland))
- (home-page "https://git.sr.ht/~bl4ckb0ne/wxrc")
+ (home-page "https://github.com/nowrep/obs-vkcapture")
(synopsis "OBS plugin for Vulkan/OpenGL game capture on Linux")
(description "This OBS plugin lets you record an OpenGL or Vulkan
game by adding the Game Capture source to your scene and starting an
base-commit: 2491a60404b69da20c2b4fd952e5d5e326374d1d
prerequisite-patch-id: 98a2f9b73a587d39782a5f393616331d629b87bf
--
2.38.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#60995] [PATCH v3 0/1] Thanks for the help
2023-01-21 20:12 [bug#60995] [PATCH] gnu: Add obs-vkcapture Ott via Guix-patches via
2023-01-21 21:38 ` [bug#60995] [PATCH v2] " Ott via Guix-patches via
@ 2023-01-21 22:33 ` Ott via Guix-patches via
2023-01-21 22:33 ` [bug#60995] [PATCH v3 1/1] gnu: Add obs-vkcapture Ott via Guix-patches via
1 sibling, 1 reply; 5+ messages in thread
From: Ott via Guix-patches via @ 2023-01-21 22:33 UTC (permalink / raw)
To: 60995; +Cc: Ott
Hi Tobias
Thanks for the help. Not used to send-mail.
Ott Joon (1):
gnu: Add obs-vkcapture.
gnu/packages/video.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
base-commit: 2491a60404b69da20c2b4fd952e5d5e326374d1d
--
2.38.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#60995] [PATCH v3 1/1] gnu: Add obs-vkcapture.
2023-01-21 22:33 ` [bug#60995] [PATCH v3 0/1] Thanks for the help Ott via Guix-patches via
@ 2023-01-21 22:33 ` Ott via Guix-patches via
2023-02-01 8:55 ` Andrew Tropin
0 siblings, 1 reply; 5+ messages in thread
From: Ott via Guix-patches via @ 2023-01-21 22:33 UTC (permalink / raw)
To: 60995; +Cc: Ott Joon
From: Ott Joon <oj@vern.cc>
* gnu/packages/video.scm (obs-vkcapture): New variable.
gnu: Add obs-vkcapture
* gnu/packages/video.scm (obs-vkcapture): New variable.
---
gnu/packages/video.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 60d39c38dc..62fea0d341 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -63,6 +63,7 @@
;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan@gmail.com>
;;; Copyright © 2022 Chadwain Holness <chadwainholness@gmail.com>
;;; Copyright © 2022 Andy Tai <atai@atai.org>
+;;; Copyright © 2023 Ott Joon <oj@vern.cc>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -3571,6 +3572,37 @@ (define-public obs-wlrobs
Wayland compositors.")
(license license:gpl3+)))
+(define-public obs-vkcapture
+ (package
+ (name "obs-vkcapture")
+ (version "1.3.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/nowrep/obs-vkcapture")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "18v15bfzm31qkpwipvbqgzak4z6f2hhq6mnz2bvhwnv57whirln6"))))
+ (build-system cmake-build-system)
+ (arguments '(#:tests? #f))
+ (native-inputs (list pkg-config))
+ (inputs (list mesa
+ obs
+ libx11
+ libxcb
+ vulkan-headers
+ vulkan-loader
+ wayland))
+ (home-page "https://github.com/nowrep/obs-vkcapture")
+ (synopsis "OBS plugin for Vulkan/OpenGL game capture on Linux")
+ (description "This OBS plugin lets you record an OpenGL or Vulkan
+game by adding the Game Capture source to your scene and starting an
+application with @code{obs-gamecapture}.")
+ (license license:gpl2)))
+
(define-public libvdpau
(package
(name "libvdpau")
--
2.38.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#60995] [PATCH v3 1/1] gnu: Add obs-vkcapture.
2023-01-21 22:33 ` [bug#60995] [PATCH v3 1/1] gnu: Add obs-vkcapture Ott via Guix-patches via
@ 2023-02-01 8:55 ` Andrew Tropin
0 siblings, 0 replies; 5+ messages in thread
From: Andrew Tropin @ 2023-02-01 8:55 UTC (permalink / raw)
To: 60995; +Cc: Ott Joon
[-- Attachment #1: Type: text/plain, Size: 2394 bytes --]
On 2023-01-22 00:33, Ott via Guix-patches via wrote:
> From: Ott Joon <oj@vern.cc>
>
> * gnu/packages/video.scm (obs-vkcapture): New variable.
>
> gnu: Add obs-vkcapture
>
> * gnu/packages/video.scm (obs-vkcapture): New variable.
> ---
> gnu/packages/video.scm | 32 ++++++++++++++++++++++++++++++++
> 1 file changed, 32 insertions(+)
>
> diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
> index 60d39c38dc..62fea0d341 100644
> --- a/gnu/packages/video.scm
> +++ b/gnu/packages/video.scm
> @@ -63,6 +63,7 @@
> ;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan@gmail.com>
> ;;; Copyright © 2022 Chadwain Holness <chadwainholness@gmail.com>
> ;;; Copyright © 2022 Andy Tai <atai@atai.org>
> +;;; Copyright © 2023 Ott Joon <oj@vern.cc>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -3571,6 +3572,37 @@ (define-public obs-wlrobs
> Wayland compositors.")
> (license license:gpl3+)))
>
> +(define-public obs-vkcapture
> + (package
> + (name "obs-vkcapture")
> + (version "1.3.0")
> + (source
> + (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://github.com/nowrep/obs-vkcapture")
> + (commit (string-append "v" version))))
> + (file-name (git-file-name name version))
> + (sha256
> + (base32
> + "18v15bfzm31qkpwipvbqgzak4z6f2hhq6mnz2bvhwnv57whirln6"))))
> + (build-system cmake-build-system)
> + (arguments '(#:tests? #f))
> + (native-inputs (list pkg-config))
> + (inputs (list mesa
> + obs
> + libx11
> + libxcb
> + vulkan-headers
> + vulkan-loader
> + wayland))
> + (home-page "https://github.com/nowrep/obs-vkcapture")
> + (synopsis "OBS plugin for Vulkan/OpenGL game capture on Linux")
> + (description "This OBS plugin lets you record an OpenGL or Vulkan
> +game by adding the Game Capture source to your scene and starting an
> +application with @code{obs-gamecapture}.")
> + (license license:gpl2)))
> +
> (define-public libvdpau
> (package
> (name "libvdpau")
Thank you for the patch! I applied guix style to obs-vkcapture, added a
comment about tests and pushed as
14323edcc37d9efaae2491cf5f57ea0621412d7e.
--
Best regards,
Andrew Tropin
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-02-01 8:57 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-21 20:12 [bug#60995] [PATCH] gnu: Add obs-vkcapture Ott via Guix-patches via
2023-01-21 21:38 ` [bug#60995] [PATCH v2] " Ott via Guix-patches via
2023-01-21 22:33 ` [bug#60995] [PATCH v3 0/1] Thanks for the help Ott via Guix-patches via
2023-01-21 22:33 ` [bug#60995] [PATCH v3 1/1] gnu: Add obs-vkcapture Ott via Guix-patches via
2023-02-01 8:55 ` Andrew Tropin
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.