summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2026-08-18 10:09:09 +0200
committerAndreas Enge <andreas@enge.fr>2026-08-18 15:41:19 +0200
commit4557a3cdb78df953f18d3c7353580fd8bb129ae3 (patch)
tree4de96f5b11a5c55b97cf1250cebdf83737ac274c
parent3d6e54a825b660df8b1854441bf8701819c55955 (diff)
gnu: (gnu packages linux): Hide libcamera-minimal from networking.
Prevents this warning: WARNING: (gnu packages linux): `libcamera-minimal' imported from both (gnu packages networking) and (gnu packages photo) * gnu/packages/linux.scm: Hide libcamera-minimal as imported from (gnu packages networking). * gnu/packages/networking.scm (libcamera-minimal): Add comment. Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r--gnu/packages/linux.scm2
-rw-r--r--gnu/packages/networking.scm2
2 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 674b7a47e32..24ff81e5925 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -170,7 +170,7 @@
170 #:use-module (gnu packages multiprecision) 170 #:use-module (gnu packages multiprecision)
171 #:use-module (gnu packages ncurses) 171 #:use-module (gnu packages ncurses)
172 #:use-module (gnu packages netpbm) 172 #:use-module (gnu packages netpbm)
173 #:use-module (gnu packages networking) 173 #:use-module ((gnu packages networking) #:hide (libcamera-minimal))
174 #:use-module (gnu packages nss) 174 #:use-module (gnu packages nss)
175 #:use-module (gnu packages onc-rpc) 175 #:use-module (gnu packages onc-rpc)
176 #:use-module (gnu packages oneapi) 176 #:use-module (gnu packages oneapi)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index d603d626cb6..fe41cd1b173 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -481,6 +481,8 @@ Raspberry Pi ISP (PiSP), consisting of the Frontend and Backend hardware
481components.") 481components.")
482 (license license:bsd-2))) 482 (license license:bsd-2)))
483 483
484;;; Remove the `#:hide (libcamera-minimal)` from linux.scm when
485;;; removing this deprecation alias.
484(define-deprecated/public-alias libcamera-minimal (@ (gnu packages photo) 486(define-deprecated/public-alias libcamera-minimal (@ (gnu packages photo)
485 libcamera-minimal)) 487 libcamera-minimal))
486 488