summary refs log tree commit diff
path: root/pkgs/development/octave-modules/miscellaneous/default.nix
blob: 74c3879aa9efa0e2b413da21462aacf8d6520fe8 (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
29
30
31
32
33
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";
  };
}