1{
2 buildOctavePackage,
3 lib,
4 fetchurl,
5}:
6
7buildOctavePackage rec {
8 pname = "image";
9 version = "2.16.1";
10
11 src = fetchurl {
12 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
13 sha256 = "sha256-NKhPdVJh9sjYgtCLB1Z0ZOol3BUVBy72iG8rJuv28Kc=";
14 };
15
16 meta = {
17 homepage = "https://gnu-octave.github.io/packages/image/";
18 license = lib.licenses.gpl3Plus;
19 maintainers = with lib.maintainers; [ KarlJoad ];
20 description = "Functions for processing images";
21 longDescription = ''
22 The Octave-forge Image package provides functions for processing
23 images. The package also provides functions for feature extraction,
24 image statistics, spatial and geometric transformations, morphological
25 operations, linear filtering, and much more.
26 '';
27 };
28}