aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/octave-modules/struct/default.nix
blob: a69a8e4b6e227b99780d7eaffc3b9b1afc5d60aa (plain)
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.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";
  };
}