lol

octave.pkgs.struct: init at 1.0.16

authored by

Karl Hallsby and committed by
Doron Behar
00a723b8 68f2862b

+23
+21
pkgs/development/octave-modules/struct/default.nix
··· 1 + { buildOctavePackage 2 + , lib 3 + , fetchurl 4 + }: 5 + 6 + buildOctavePackage rec { 7 + pname = "struct"; 8 + version = "1.0.16"; 9 + 10 + src = fetchurl { 11 + url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 12 + sha256 = "0gx20r126f0ccl4yflp823xi77p8fh4acx1fv0mmcsglmx4c4vgm"; 13 + }; 14 + 15 + meta = with lib; { 16 + homepage = "https://octave.sourceforge.io/struct/index.html"; 17 + license = licenses.gpl3Plus; 18 + maintainers = with maintainers; [ KarlJoad ]; 19 + description = "Additional structure manipulation functions"; 20 + }; 21 + }
+2
pkgs/top-level/octave-packages.nix
··· 173 173 174 174 signal = callPackage ../development/octave-modules/signal { }; 175 175 176 + struct = callPackage ../development/octave-modules/struct { }; 177 + 176 178 symbolic = callPackage ../development/octave-modules/symbolic { 177 179 inherit (octave) python; 178 180 };