octave.pkgs.mapping: init at 1.4.1

This commit is contained in:
Karl Hallsby 2021-01-06 11:19:17 -06:00 committed by Doron Behar
parent bc8d72e32f
commit c45836b1bb
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,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";
};
}

View file

@ -134,6 +134,8 @@ makeScope newScope (self:
inherit (pkgs) fftwFloat fftwLongDouble;
};
mapping = callPackage ../development/octave-modules/mapping { };
signal = callPackage ../development/octave-modules/signal { };
symbolic = callPackage ../development/octave-modules/symbolic {