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:52:08 -0600
committerDoron Behar <doron.behar@gmail.com>2021-02-24 21:00:51 +0200
commit00a723b8b373dd5b331d520815dd4949a88ac758 (patch)
treeba19c9c93e321b9abccc1c41ea4e9657bc1ba9bf /pkgs/development/octave-modules
parent68f2862b36cc9be298ce23a6bc31acba749f26e0 (diff)
downloadnixpkgs-00a723b8b373dd5b331d520815dd4949a88ac758.tar
nixpkgs-00a723b8b373dd5b331d520815dd4949a88ac758.tar.gz
nixpkgs-00a723b8b373dd5b331d520815dd4949a88ac758.tar.bz2
nixpkgs-00a723b8b373dd5b331d520815dd4949a88ac758.tar.lz
nixpkgs-00a723b8b373dd5b331d520815dd4949a88ac758.tar.xz
nixpkgs-00a723b8b373dd5b331d520815dd4949a88ac758.tar.zst
nixpkgs-00a723b8b373dd5b331d520815dd4949a88ac758.zip
octave.pkgs.struct: init at 1.0.16
Diffstat (limited to 'pkgs/development/octave-modules')
-rw-r--r--pkgs/development/octave-modules/struct/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/octave-modules/struct/default.nix b/pkgs/development/octave-modules/struct/default.nix
new file mode 100644
index 00000000000..a69a8e4b6e2
--- /dev/null
+++ b/pkgs/development/octave-modules/struct/default.nix
@@ -0,0 +1,21 @@
+{ buildOctavePackage
+, lib
+, fetchurl
+}:
+
+buildOctavePackage rec {
+  pname = "struct";
+  version = "1.0.16";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
+    sha256 = "0gx20r126f0ccl4yflp823xi77p8fh4acx1fv0mmcsglmx4c4vgm";
+  };
+
+  meta = with lib; {
+    homepage = "https://octave.sourceforge.io/struct/index.html";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ KarlJoad ];
+    description = "Additional structure manipulation functions";
+  };
+}