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:
Tobias Geerinckx-Rice 2022-05-22 02:00:03 +02:00
parent 8ff87f24a7
commit 38bf6c7d0c
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -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")