aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/octave-modules/struct/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/octave-modules/struct/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/octave-modules/struct/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/octave-modules/struct/default.nix b/infra/libkookie/nixpkgs/pkgs/development/octave-modules/struct/default.nix
new file mode 100644
index 000000000000..a69a8e4b6e22
--- /dev/null
+++ b/infra/libkookie/nixpkgs/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";
+ };
+}