fcgi library added

svn path=/nixpkgs/trunk/; revision=10552
This commit is contained in:
Marc Weber 2008-02-08 10:54:56 +00:00
parent 94128cb6a8
commit 248004a624
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,18 @@
args:
args.stdenv.mkDerivation rec {
name = "fcgi-2.4.0";
src = args.fetchurl {
name = name + ".tar.gz";
url = http://www.fastcgi.com/dist/fcgi.tar.gz;
sha256 = "1f857wnl1d6jfrgfgfpz3zdaj8fch3vr13mnpcpvy8bang34bz36";
};
buildInputs =(with args; []);
meta = {
description = "FastCGI is a language independent, scalable, open extension to CG";
homepage = http://www.fastcgi.com/;
license = "FastCGI see LICENSE.TERMS";
};
}

View file

@ -1946,6 +1946,10 @@ rec {
stdenv = stdenvUsingSetupNew2;
};
fcgi = import ../development/libraries/fcgi {
inherit fetchurl stdenv;
};
ffmpeg = import ../development/libraries/ffmpeg {
inherit fetchurl stdenv;
};