nixpkgs/pkgs/development/libraries/fcgi/default.nix
Joachim Fasting bf7ad2d84f meta.description fixups
Mostly scripted substitutions with a couple of subjective enhancements.
2015-04-30 18:17:42 +02:00

23 lines
583 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "fcgi-2.4.0";
src = fetchurl {
url = "http://www.fastcgi.com/dist/${name}.tar.gz";
sha256 = "1f857wnl1d6jfrgfgfpz3zdaj8fch3vr13mnpcpvy8bang34bz36";
};
patches = [ ./gcc-4.4.diff ];
postInstall = "ln -s . $out/include/fastcgi";
meta = with stdenv.lib; {
description = "A language independent, scalable, open extension to CG";
homepage = http://www.fastcgi.com/;
license = "FastCGI see LICENSE.TERMS";
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}