Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / octave-modules / struct / default.nix
bloba69a8e4b6e227b99780d7eaffc3b9b1afc5d60aa
1 { buildOctavePackage
2 , lib
3 , fetchurl
4 }:
6 buildOctavePackage rec {
7   pname = "struct";
8   version = "1.0.16";
10   src = fetchurl {
11     url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
12     sha256 = "0gx20r126f0ccl4yflp823xi77p8fh4acx1fv0mmcsglmx4c4vgm";
13   };
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   };