civodul pushed a commit to branch master
in repository guix.
commit 5980c8a6b16dd589769ad7cd0bab82fcb9c116cb
Author: Zheng Junjie <[email protected]>
AuthorDate: Tue Mar 5 01:19:34 2024 +0800
gnu: libtheora: Use Gexps.
* gnu/packages/xiph.scm (libtheora): Use Gexps.
Change-Id: Ie055cd4f6cb9d2a4601b93d1f9db227598349c7c
Signed-off-by: Ludovic Courtès <[email protected]>
---
gnu/packages/xiph.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/xiph.scm b/gnu/packages/xiph.scm
index b47c718fb6..879d8e8d39 100644
--- a/gnu/packages/xiph.scm
+++ b/gnu/packages/xiph.scm
@@ -13,6 +13,7 @@
;;; Copyright © 2021 Brendan Tildesley <[email protected]>
;;; Copyright © 2021 Matthew James Kraai <[email protected]>
;;; Copyright © 2021 Vinicius Monego <[email protected]>
+;;; Copyright © 2024 Zheng Junjie <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -47,7 +48,8 @@
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix git-download)
- #:use-module (guix build-system gnu))
+ #:use-module (guix build-system gnu)
+ #:use-module (guix gexp))
(define-public libogg
(package
@@ -115,7 +117,7 @@ polyphonic) audio and music at fixed and variable bitrates
from 16 to
(patches (search-patches "libtheora-config-guess.patch"))))
(build-system gnu-build-system)
(arguments
- '(#:configure-flags '("--disable-static")))
+ (list #:configure-flags #~'("--disable-static")))
(inputs (list libvorbis))
;; The .pc files refer to libogg.
(propagated-inputs (list libogg))