about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/octave-modules/struct/default.nix
blob: bd173aab1e3720aaf6dcb219dfe9eb968c79fb42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ buildOctavePackage
, lib
, fetchurl
}:

buildOctavePackage rec {
  pname = "struct";
  version = "1.0.17";

  src = fetchurl {
    url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
    sha256 = "0cw4cspkm553v019zsj2bsmal0i378pm0hv29w82j3v5vysvndq1";
  };

  meta = with lib; {
    homepage = "https://octave.sourceforge.io/struct/index.html";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ KarlJoad ];
    description = "Additional structure manipulation functions";
  };
}