me
/
guix
Archived
1
0
Fork 0

gnu: Add obs-source-copy.

* gnu/packages/video.scm (obs-source-copy): New variable.

Change-Id: I73fabb7061abcdad98a93f8ad7cab6ee1892ad9d
master
Oleg Pykhalov 2024-06-13 14:58:09 +03:00
parent 5e355dd413
commit 4aad2ff47c
No known key found for this signature in database
GPG Key ID: 167F8EA5001AFA9C
1 changed files with 29 additions and 0 deletions

View File

@ -4162,6 +4162,35 @@ your host privately.")
inputs and applications using PipeWire.")
(license license:gpl2+)))
(define-public obs-source-copy
(package
(name "obs-source-copy")
(version "0.2.4")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/exeldro/obs-source-copy")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1l3ls3j57yh03vkwiah6yj1xnnmq7q2ngjjn1k4h1sqqk0dxn86j"))))
(build-system cmake-build-system)
(arguments
(list
#:tests? #f ;no tests
#:configure-flags
#~(list (string-append "-DLIBOBS_INCLUDE_DIR="
#$(this-package-input "obs") "/lib")
"-DBUILD_OUT_OF_TREE=On"
"-Wno-dev")))
(inputs (list obs qtbase-5))
(home-page "https://github.com/exeldro/obs-source-copy")
(synopsis "OBS plugin for copy and paste scenes, sources and filters")
(description "This package provides an OBS plugin for copy and paste
scenes, sources and filters.")
(license license:gpl2)))
(define-public obs-source-record
(package
(name "obs-source-record")