nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ buildOctavePackage
2, lib
3, fetchurl
4, libv4l
5, fltk
6}:
7
8buildOctavePackage rec {
9 pname = "image-acquisition";
10 version = "0.2.2";
11
12 src = fetchurl {
13 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
14 sha256 = "1amp6npkddnnz2i5rm6gvn65qrbn0nxzl2cja3dvc2xqg396wrhh";
15 };
16
17 buildInputs = [
18 libv4l
19 fltk
20 ];
21
22 meta = with lib; {
23 homepage = "https://octave.sourceforge.io/image-acquisition/index.html";
24 license = licenses.gpl3Plus;
25 maintainers = with maintainers; [ KarlJoad ];
26 description = "Functions to capture images from connected devices";
27 longDescription = ''
28 The Octave-forge Image Aquisition package provides functions to
29 capture images from connected devices. Currently only v4l2 is supported.
30 '';
31 # Got broke with octave 8.x update, and wasn't updated since 2015
32 broken = true;
33 };
34}