octave.pkgs.struct: init at 1.0.16
This commit is contained in:
parent
68f2862b36
commit
00a723b8b3
2 changed files with 23 additions and 0 deletions
21
pkgs/development/octave-modules/struct/default.nix
Normal file
21
pkgs/development/octave-modules/struct/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue