octave.pkgs.miscellaneous: init at 1.3.0

This commit is contained in:
Karl Hallsby 2021-01-06 11:22:59 -06:00 committed by Doron Behar
parent a6314f4396
commit 29b9735f91
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ buildOctavePackage
, lib
, fetchurl
# Build-time dependencies
, mlterm
, ncurses # >= 5
, units
}:
buildOctavePackage rec {
pname = "miscellaneous";
version = "1.3.0";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "10n107njz24ln7v9a1l3dkh7s7vd6qwgbinrj1nl4wflxsir4l9k";
};
buildInputs = [
mlterm
ncurses
];
propagatedBuildInputs = [
units
];
meta = with lib; {
homepage = "https://octave.sourceforge.io/miscellaneous/index.html";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ KarlJoad ];
description = "Miscellaneous tools that don't fit somewhere else";
};
}

View file

@ -138,6 +138,8 @@ makeScope newScope (self:
matgeom = callPackage ../development/octave-modules/matgeom { };
miscellaneous = callPackage ../development/octave-modules/miscellaneous { };
signal = callPackage ../development/octave-modules/signal { };
symbolic = callPackage ../development/octave-modules/symbolic {