octave.pkgs.miscellaneous: init at 1.3.0
This commit is contained in:
parent
a6314f4396
commit
29b9735f91
34
pkgs/development/octave-modules/miscellaneous/default.nix
Normal file
34
pkgs/development/octave-modules/miscellaneous/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user