mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
fcgi library added
svn path=/nixpkgs/trunk/; revision=10552
This commit is contained in:
parent
94128cb6a8
commit
248004a624
18
pkgs/development/libraries/fcgi/default.nix
Normal file
18
pkgs/development/libraries/fcgi/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -1946,6 +1946,10 @@ rec {
|
||||
stdenv = stdenvUsingSetupNew2;
|
||||
};
|
||||
|
||||
fcgi = import ../development/libraries/fcgi {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
ffmpeg = import ../development/libraries/ffmpeg {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user