lol

octave.pkgs.cgi: init at 0.1.2

authored by

Karl Hallsby and committed by
Doron Behar
cd3928a7 c4765ca4

+21
+21
pkgs/development/octave-modules/cgi/default.nix
···
··· 1 + { buildOctavePackage 2 + , lib 3 + , fetchurl 4 + }: 5 + 6 + buildOctavePackage rec { 7 + pname = "cgi"; 8 + version = "0.1.2"; 9 + 10 + src = fetchurl { 11 + url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 12 + sha256 = "0hygj7cpwrs2w9bfb7qrvv7gq410bfiddqvza8smg766pqmfp1s1"; 13 + }; 14 + 15 + meta = with lib; { 16 + homepage = "https://octave.sourceforge.io/cgi/index.html"; 17 + license = licenses.gpl2Plus; 18 + maintainers = with maintainers; [ KarlJoad ]; 19 + description = "Common Gateway Interface for Octave"; 20 + }; 21 + }