mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add v4l-utils-minimal.
* gnu/packages/video.scm (v4l-utils-minimal): New variable. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
eb713ef92f
commit
f3a897065a
1 changed files with 14 additions and 0 deletions
|
@ -4060,6 +4060,20 @@ be used for realtime video capture via Linux-specific APIs.")
|
||||||
;; libv4l2 is LGPL2.1+, while utilities are GPL2 only.
|
;; libv4l2 is LGPL2.1+, while utilities are GPL2 only.
|
||||||
(license (list license:lgpl2.1+ license:gpl2))))
|
(license (list license:lgpl2.1+ license:gpl2))))
|
||||||
|
|
||||||
|
(define-public v4l-utils-minimal
|
||||||
|
(package/inherit v4l-utils
|
||||||
|
(name "v4l-utils-minimal")
|
||||||
|
(arguments
|
||||||
|
(substitute-keyword-arguments (package-arguments v4l-utils)
|
||||||
|
((#:phases phases)
|
||||||
|
#~(modify-phases #$phases
|
||||||
|
(delete 'split)))
|
||||||
|
((#:disallowed-references _ '())
|
||||||
|
(list qtbase qtbase-5))))
|
||||||
|
(outputs '("out"))
|
||||||
|
(inputs (modify-inputs (package-inputs v4l-utils)
|
||||||
|
(delete "qtbase")))))
|
||||||
|
|
||||||
(define-public obs
|
(define-public obs
|
||||||
(package
|
(package
|
||||||
(name "obs")
|
(name "obs")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue