Commit 6b8ae8a3 authored by Karl Hallsby's avatar Karl Hallsby
Browse files

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.
parent 54719fed
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -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;
  };
}