nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

octave.pkgs.image-acquisition: init at 0.2.2

authored by

Karl Hallsby and committed by
Doron Behar
bb3295b8 6cce7e8e

+34
+32
pkgs/development/octave-modules/image-acquisition/default.nix
··· 1 + { buildOctavePackage 2 + , lib 3 + , fetchurl 4 + , libv4l 5 + , fltk 6 + }: 7 + 8 + buildOctavePackage 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 + }; 32 + }
+2
pkgs/top-level/octave-packages.nix
··· 113 113 114 114 image = callPackage ../development/octave-modules/image { }; 115 115 116 + image-acquisition = callPackage ../development/octave-modules/image-acquisition { }; 117 + 116 118 io = callPackage ../development/octave-modules/io { 117 119 inherit (octave) enableJava; 118 120 };