nixpkgs/pkgs/development/octave-modules/cgi/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
499 B
Nix
Raw Normal View History

2021-01-06 19:44:23 +03:00
{ 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";
};
}