summary refs log tree commit diff
path: root/pkgs/development/octave-modules/cgi/default.nix
blob: 4686881251afa3d1c1cb59d3dd3dc2181c9840a8 (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 = "cgi";
  version = "0.1.2";

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

  meta = with lib; {
    homepage = "https://octave.sourceforge.io/cgi/index.html";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ KarlJoad ];
    description = "Common Gateway Interface for Octave";
  };
}