blob: 6808ea52adff25a8f5a011ce9086467212fbefac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ 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 ];
};
}
|