at v192 22 lines 583 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "fcgi-2.4.0"; 5 6 src = fetchurl { 7 url = "http://www.fastcgi.com/dist/${name}.tar.gz"; 8 sha256 = "1f857wnl1d6jfrgfgfpz3zdaj8fch3vr13mnpcpvy8bang34bz36"; 9 }; 10 11 patches = [ ./gcc-4.4.diff ]; 12 13 postInstall = "ln -s . $out/include/fastcgi"; 14 15 meta = with stdenv.lib; { 16 description = "A language independent, scalable, open extension to CG"; 17 homepage = http://www.fastcgi.com/; 18 license = "FastCGI see LICENSE.TERMS"; 19 platforms = platforms.all; 20 maintainers = with maintainers; [ wkennington ]; 21 }; 22}