diff --git a/pkgs/development/octave-modules/image-acquisition/default.nix b/pkgs/development/octave-modules/image-acquisition/default.nix index e1410fd8368f..69f7c1a60a54 100644 --- a/pkgs/development/octave-modules/image-acquisition/default.nix +++ b/pkgs/development/octave-modules/image-acquisition/default.nix @@ -7,18 +7,21 @@ buildOctavePackage rec { pname = "image-acquisition"; - version = "0.2.2"; + version = "0.2.6"; src = fetchurl { url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; - sha256 = "1amp6npkddnnz2i5rm6gvn65qrbn0nxzl2cja3dvc2xqg396wrhh"; + sha256 = "sha256-Uehwk68GZ/M4WL5M3GF++mCPUg3M08Y0gkdO36/yhNI="; }; 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; }; }