Unverified Commit 0da883d8 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

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

parents df805a89 6b8ae8a3
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -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;
  };
}