summary refs log tree commit diff
path: root/pkgs/development/libraries/fcgi/default.nix
blob: 81474b62dc6f20ea6dcefca80bec7d685cc6cb0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "fcgi-2.4.0";

  src = fetchurl {
    url = http://www.fastcgi.com/dist/fcgi.tar.gz;
    sha256 = "1f857wnl1d6jfrgfgfpz3zdaj8fch3vr13mnpcpvy8bang34bz36";
  };

  meta = { 
    description = "FastCGI  is a language independent, scalable, open extension to CG";
    homepage = http://www.fastcgi.com/;
    license = "FastCGI see LICENSE.TERMS";
  };
}