diff options
author | Hikari <aneris@disroot.org> | 2025-02-04 16:25:23 +0530 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-05 16:24:09 +0000 |
commit | dfbd6532d64abbe57f08cf8815d250e2e995f99a (patch) | |
tree | 370fe072fa9635f7eb9b6df369dca7debadf8114 | |
parent | 216a37ba5005148bbb88c4f6b8e9dd5904d49074 (diff) |
gnu: openh264: Update to 2.5.0.
* gnu/packages/video.scm (openh264): Update to 2.5.0.
Reviewed-by: Andrew Wong <brosasaki@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Change-Id: Ic960ed6293c8aa2ab16f55efaa02c639870abf6e
-rw-r--r-- | gnu/packages/video.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index d0b5907bdd..89683553cf 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -5209,7 +5209,7 @@ post-processing of video formats like MPEG2, H.264/AVC, and VC-1.") (define-public openh264 (package (name "openh264") - (version "2.3.0") + (version "2.5.0") (source (origin (method git-fetch) (uri (git-reference @@ -5218,7 +5218,7 @@ post-processing of video formats like MPEG2, H.264/AVC, and VC-1.") (file-name (git-file-name name version)) (sha256 (base32 - "1yr6nsjpnazq4z6dvjfyanljwgwnyjh3ddxa0sq6hl9qc59yq91r")))) + "1lkzidgb3835jjf3qd56avgb7ag4s6l4yvi2b3aacfqpzvh7vjib")))) (build-system gnu-build-system) (native-inputs (list nasm python)) @@ -5226,7 +5226,7 @@ post-processing of video formats like MPEG2, H.264/AVC, and VC-1.") (list #:make-flags #~(list (string-append "PREFIX=" #$output) - "CC=gcc") + (string-append "CC=" #$(cc-for-target))) #:test-target "test" #:phases #~(modify-phases %standard-phases |