From fcff2393de20f23c231bd7777ca9c56fb80ec1d7 Mon Sep 17 00:00:00 2001 From: Andrew Tropin Date: Tue, 20 Aug 2024 17:44:10 +0400 Subject: gnu: libcamera: Enable simple pipeline. * gnu/packages/networking.scm (libcamera) [arguments]: Enable simple pipeline in configure-flags. Change-Id: Ica9df2a2e224edd85cc32a6f2c66a83d1557f8df --- gnu/packages/networking.scm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'gnu/packages/networking.scm') diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index ac91e5ee91..b9d5445dfe 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -371,8 +371,6 @@ (define-public lcsync them in order to efficiently transfer a minimal amount of data.") (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 (package (name "libcamera") @@ -395,6 +393,13 @@ (define-public libcamera #:configure-flags #~(list (string-append "-Dbindir=" (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" ;; XXX: Requires bundled pybind11. "-Dpycamera=disabled") -- cgit v1.2.3