octavePackages.image-acquisition: propagate libv4l to runtime

libv4l is needed when running Octave with this package. Propagate the
library input so the final Octave environment also contains libv4l.
This commit is contained in:
Karl Hallsby 2024-09-01 11:01:33 -05:00
parent 54719fedf2
commit 6b8ae8a33c

View File

@ -15,10 +15,13 @@ buildOctavePackage rec {
};
buildInputs = [
libv4l
fltk
];
propagatedBuildInputs = [
libv4l
];
meta = with lib; {
homepage = "https://octave.sourceforge.io/image-acquisition/index.html";
license = licenses.gpl3Plus;
@ -28,7 +31,5 @@ buildOctavePackage rec {
The Octave-forge Image Aquisition package provides functions to
capture images from connected devices. Currently only v4l2 is supported.
'';
# Got broke with octave 8.x update, and wasn't updated since 2015
broken = true;
};
}