octave.pkgs.mapping: init at 1.4.1
This commit is contained in:
parent
bc8d72e32f
commit
c45836b1bb
28
pkgs/development/octave-modules/mapping/default.nix
Normal file
28
pkgs/development/octave-modules/mapping/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user