summaryrefslogtreecommitdiffstats
path: root/pkgs/development/octave-modules/struct/default.nix
blob: 6b59fa7e291dbb27101c62d77867786ab06f24b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  buildOctavePackage,
  lib,
  fetchurl,
}:

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

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

  meta = {
    homepage = "https://gnu-octave.github.io/packages/struct/";
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ ravenjoad ];
    description = "Additional structure manipulation functions";
  };
}