biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / http / spawn-fcgi / default.nix
blob3a4d9c8597c57f9bc696dc99a0c736ae0816312b
1 { lib, stdenv, fetchsvn, autoconf, automake }:
3 stdenv.mkDerivation rec {
4   pname = "spawn-fcgi";
5   version = "1.6.4";
7   src = fetchsvn {
8     url = "svn://svn.lighttpd.net/spawn-fcgi/tags/spawn-fcgi-${version}";
9     sha256 = "07r6nwbg4881mdgp0hqh80c4x9wb7jg6cgc84ghwhfbd2abc2iq5";
10   };
12   nativeBuildInputs = [ automake autoconf ];
14   preConfigure = ''
15     ./autogen.sh
16   '';
18   meta = with lib; {
19     homepage    = "https://redmine.lighttpd.net/projects/spawn-fcgi";
20     description = "Provides an interface to external programs that support the FastCGI interface";
21     mainProgram = "spawn-fcgi";
22     license     = licenses.bsd3;
23     maintainers = with maintainers; [ ];
24     platforms = with platforms; unix;
25   };