Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 stdenv, 4 fetchsvn, 5 autoconf, 6 automake, 7}: 8 9stdenv.mkDerivation rec { 10 pname = "spawn-fcgi"; 11 version = "1.6.4"; 12 13 src = fetchsvn { 14 url = "svn://svn.lighttpd.net/spawn-fcgi/tags/spawn-fcgi-${version}"; 15 sha256 = "07r6nwbg4881mdgp0hqh80c4x9wb7jg6cgc84ghwhfbd2abc2iq5"; 16 }; 17 18 nativeBuildInputs = [ 19 automake 20 autoconf 21 ]; 22 23 preConfigure = '' 24 ./autogen.sh 25 ''; 26 27 meta = with lib; { 28 homepage = "https://redmine.lighttpd.net/projects/spawn-fcgi"; 29 description = "Provides an interface to external programs that support the FastCGI interface"; 30 mainProgram = "spawn-fcgi"; 31 license = licenses.bsd3; 32 maintainers = [ ]; 33 platforms = with platforms; unix; 34 }; 35}