octave.pkgs.struct: init at 1.0.16

This commit is contained in:
Karl Hallsby 2021-01-06 11:52:08 -06:00 committed by Doron Behar
parent 68f2862b36
commit 00a723b8b3
2 changed files with 23 additions and 0 deletions

View file

@ -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";
};
}

View file

@ -173,6 +173,8 @@ makeScope newScope (self:
signal = callPackage ../development/octave-modules/signal { };
struct = callPackage ../development/octave-modules/struct { };
symbolic = callPackage ../development/octave-modules/symbolic {
inherit (octave) python;
};