mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-10 05:09:33 -05:00
gnu: obs-websocket: Update to 4.9.1.
* gnu/packages/video.scm (obs-websocket): Update to 4.9.1. [arguments]: Update CMakeLists.txt permissions substitution. Don't explicitly return #t from phases.
This commit is contained in:
parent
8ff87f24a7
commit
38bf6c7d0c
1 changed files with 5 additions and 5 deletions
|
@ -3499,7 +3499,7 @@ (define-public obs-spectralizer
|
||||||
(define-public obs-websocket
|
(define-public obs-websocket
|
||||||
(package
|
(package
|
||||||
(name "obs-websocket")
|
(name "obs-websocket")
|
||||||
(version "4.9.0")
|
(version "4.9.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -3509,7 +3509,7 @@ (define-public obs-websocket
|
||||||
(recursive? #t)))
|
(recursive? #t)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1r47861ma1s3998clahbnbc216wcf706b1ps514k5p28h511l5w0"))))
|
(base32 "0giwhm0rbc578qng4invqqma935zzjlf05msz1gx986aqk654s7k"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;no tests
|
`(#:tests? #f ;no tests
|
||||||
|
@ -3519,10 +3519,10 @@ (define-public obs-websocket
|
||||||
(lambda* _
|
(lambda* _
|
||||||
(substitute* "CMakeLists.txt"
|
(substitute* "CMakeLists.txt"
|
||||||
;; Remove lines that set writeable permissions on outputs.
|
;; Remove lines that set writeable permissions on outputs.
|
||||||
|
(("PERMISSIONS [^)]*") "")
|
||||||
(("set\\(CMAKE_INSTALL_DEFAULT_DIRECTORY_PERMISSIONS") "")
|
(("set\\(CMAKE_INSTALL_DEFAULT_DIRECTORY_PERMISSIONS") "")
|
||||||
(("OWNER_READ.*\\)") "")
|
;; Ug^WClever hack to comment out the next line, which is ‘)’.
|
||||||
(("PERMISSIONS") ")"))
|
(("(OWNER|GROUP|WORLD)_READ .*") "#")))))))
|
||||||
#t)))))
|
|
||||||
(inputs
|
(inputs
|
||||||
(list obs qtbase-5))
|
(list obs qtbase-5))
|
||||||
(home-page "https://github.com/Palakis/obs-websocket")
|
(home-page "https://github.com/Palakis/obs-websocket")
|
||||||
|
|
Loading…
Reference in a new issue