Add GNU MyServer.

svn path=/nixpkgs/trunk/; revision=16801
This commit is contained in:
Ludovic Courtès
2009-08-21 10:20:40 +00:00
parent a56fecb102
commit 4ad3ea4107
4 changed files with 149 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
{ fetchurl, stdenv, libgcrypt, libevent, libidn, gnutls
, libxml2, zlib, texinfo, cppunit }:
let version = "0.9"; in
stdenv.mkDerivation rec {
name = "myserver-${version}";
src = fetchurl {
url = "mirror://gnu/myserver/${version}/${name}.tar.bz2";
sha256 = "1fhqgxfyhw6kygbicddpn2575mp8ybck3yffscbw26xmjkpm7nxy";
};
patches = [ ./prefix.patch ./TESTS.patch ];
buildInputs = [ libgcrypt libevent libidn gnutls libxml2 zlib texinfo ]
++ stdenv.lib.optional doCheck cppunit;
doCheck = true;
meta = {
description = "GNU MyServer, a powerful and easy to configure web server";
longDescription = ''
GNU MyServer is a powerful and easy to configure web server. Its
multi-threaded architecture makes it extremely scalable and usable in
large scale sites as well as in small networks, it has a lot of
built-in features. Share your files in minutes!
'';
homepage = http://www.gnu.org/software/myserver/;
license = "GPLv3+";
maintainers = [ stdenv.lib.maintainers.ludo ];
};
}