nixpkgs/pkgs/development/libraries/fcgi/default.nix
Eelco Dolstra 6609710409 * Get rid of many instances of "args: with args;", and other coding
guidelines violations.
* Updated libsamplerate to 0.1.7.

svn path=/nixpkgs/trunk/; revision=22782
2010-07-28 11:55:54 +00:00

17 lines
408 B
Nix

{ 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";
};
}