octavePackages.image-acquisition: 0.2.2 -> 0.2.6 (#338851)

This commit is contained in:
Peder Bergebakken Sundt 2024-09-12 15:48:19 +02:00 committed by GitHub
commit 0da883d823
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;
};
}