summary refs log tree commit diff
path: root/pkgs/development/octave-modules
diff options
context:
space:
mode:
authorKarl Hallsby <karl@hallsby.com>2021-01-06 11:22:59 -0600
committerDoron Behar <doron.behar@gmail.com>2021-02-24 21:00:50 +0200
commit29b9735f91c4ab756e8b389362586e6060aadf56 (patch)
tree55789fef039784100ad71d89556a02c6b64ac8b0 /pkgs/development/octave-modules
parenta6314f43965e63b6e9590bc6fddaf1aeffb8b5e9 (diff)
downloadnixpkgs-29b9735f91c4ab756e8b389362586e6060aadf56.tar
nixpkgs-29b9735f91c4ab756e8b389362586e6060aadf56.tar.gz
nixpkgs-29b9735f91c4ab756e8b389362586e6060aadf56.tar.bz2
nixpkgs-29b9735f91c4ab756e8b389362586e6060aadf56.tar.lz
nixpkgs-29b9735f91c4ab756e8b389362586e6060aadf56.tar.xz
nixpkgs-29b9735f91c4ab756e8b389362586e6060aadf56.tar.zst
nixpkgs-29b9735f91c4ab756e8b389362586e6060aadf56.zip
octave.pkgs.miscellaneous: init at 1.3.0
Diffstat (limited to 'pkgs/development/octave-modules')
-rw-r--r--pkgs/development/octave-modules/miscellaneous/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/development/octave-modules/miscellaneous/default.nix b/pkgs/development/octave-modules/miscellaneous/default.nix
new file mode 100644
index 00000000000..74c3879aa9e
--- /dev/null
+++ b/pkgs/development/octave-modules/miscellaneous/default.nix
@@ -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";
+  };
+}