mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
35 lines
684 B
Nix
35 lines
684 B
Nix
{ 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";
|
|
};
|
|
}
|