mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: libcamera: Enable simple pipeline.
* gnu/packages/networking.scm (libcamera) [arguments]: Enable simple pipeline in configure-flags. Change-Id: Ica9df2a2e224edd85cc32a6f2c66a83d1557f8df
This commit is contained in:
parent
7ed52500c9
commit
fcff2393de
1 changed files with 7 additions and 2 deletions
|
@ -371,8 +371,6 @@ (define-public lcsync
|
||||||
them in order to efficiently transfer a minimal amount of data.")
|
them in order to efficiently transfer a minimal amount of data.")
|
||||||
(license (list license:gpl2 license:gpl3))))
|
(license (list license:gpl2 license:gpl3))))
|
||||||
|
|
||||||
;; This package does not have a release yet.
|
|
||||||
;; But this is required to provide a feature in PipeWire.
|
|
||||||
(define-public libcamera
|
(define-public libcamera
|
||||||
(package
|
(package
|
||||||
(name "libcamera")
|
(name "libcamera")
|
||||||
|
@ -395,6 +393,13 @@ (define-public libcamera
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
#~(list (string-append "-Dbindir="
|
#~(list (string-append "-Dbindir="
|
||||||
(assoc-ref %outputs "tools") "/bin")
|
(assoc-ref %outputs "tools") "/bin")
|
||||||
|
|
||||||
|
;; In 0.3.1 release simple pipeline wasn't enabled for
|
||||||
|
;; x86_64 by mistake, it's enabled a couple commits later.
|
||||||
|
;; Remove this expression on the next release.
|
||||||
|
#$(if (target-x86-64?)
|
||||||
|
"-Dpipelines=ipu3,vimc,uvcvideo,simple"
|
||||||
|
"")
|
||||||
"-Dtest=true" "-Dv4l2=true"
|
"-Dtest=true" "-Dv4l2=true"
|
||||||
;; XXX: Requires bundled pybind11.
|
;; XXX: Requires bundled pybind11.
|
||||||
"-Dpycamera=disabled")
|
"-Dpycamera=disabled")
|
||||||
|
|
Loading…
Reference in a new issue