about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/octave-modules/mapping/default.nix
blob: 26cea27a7253daf1f912c53e7602c0f3245528f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ buildOctavePackage
, lib
, fetchurl
, io # >= 2.2.7
, geometry # >= 4.0.0
}:

buildOctavePackage rec {
  pname = "mapping";
  version = "1.4.1";

  src = fetchurl {
    url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
    sha256 = "0wj0q1rkrqs4qgpjh4vn9kcpdh94pzr6v4jc1vcrjwkp87yjv8c0";
  };

  requiredOctavePackages = [
    io
    geometry
  ];

  meta = with lib; {
    homepage = "https://octave.sourceforge.io/mapping/index.html";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ KarlJoad ];
    description = "Simple mapping and GIS .shp .dxf and raster file functions";
  };
}