summaryrefslogtreecommitdiffstats
path: root/pkgs/servers/http/myserver/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/http/myserver/default.nix')
-rw-r--r--pkgs/servers/http/myserver/default.nix69
1 files changed, 33 insertions, 36 deletions
diff --git a/pkgs/servers/http/myserver/default.nix b/pkgs/servers/http/myserver/default.nix
index a86f924346bc..3e1c94e79b4b 100644
--- a/pkgs/servers/http/myserver/default.nix
+++ b/pkgs/servers/http/myserver/default.nix
@@ -1,53 +1,50 @@
-{ fetchurl, stdenv, libgcrypt, libevent, libidn, gnutls
+{ lib, fetchurl, stdenv, libgcrypt, libevent, libidn, gnutls
, libxml2, zlib, guile, texinfo, cppunit, psmisc }:
let version = "0.11"; in
- stdenv.mkDerivation (rec {
- name = "myserver-${version}";
- src = fetchurl {
- url = "mirror://gnu/myserver/${version}/${name}.tar.xz";
- sha256 = "02y3vv4hxpy5h710y79s8ipzshhc370gbz1wm85x0lnq5nqxj2ax";
- };
+stdenv.mkDerivation rec {
+ name = "myserver-${version}";
- patches =
- [ ./disable-dns-lookup-in-chroot.patch ];
+ src = fetchurl {
+ url = "mirror://gnu/myserver/${version}/${name}.tar.xz";
+ sha256 = "02y3vv4hxpy5h710y79s8ipzshhc370gbz1wm85x0lnq5nqxj2ax";
+ };
- buildInputs =
- [ libgcrypt libevent libidn gnutls libxml2 zlib guile texinfo ]
- ++ stdenv.lib.optional doCheck cppunit;
+ patches =
+ [ ./disable-dns-lookup-in-chroot.patch ];
- makeFlags = [ "V=1" ];
+ buildInputs =
+ [ libgcrypt libevent libidn gnutls libxml2 zlib guile texinfo ]
+ ++ lib.optional doCheck cppunit;
- doCheck = true;
+ makeFlags = [ "V=1" ];
- enableParallelBuilding = true;
+ doCheck = true;
- meta = {
- description = "GNU MyServer, a powerful and easy to configure web server";
+ enableParallelBuilding = true;
- 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!
- '';
+ # On GNU/Linux the `test_suite' process sometimes stays around, so
+ # forcefully terminate it.
+ postCheck = lib.optionalString stdenv.isLinux "${psmisc}/bin/killall test_suite || true";
- homepage = http://www.gnu.org/software/myserver/;
+ meta = {
+ description = "GNU MyServer, a powerful and easy to configure web server";
- license = stdenv.lib.licenses.gpl3Plus;
+ 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!
+ '';
- maintainers = [ ];
+ homepage = http://www.gnu.org/software/myserver/;
- # libevent fails to build on Cygwin and Guile has troubles on Darwin.
- platforms = stdenv.lib.platforms.gnu;
- };
- }
+ license = lib.licenses.gpl3Plus;
- //
+ # libevent fails to build on Cygwin and Guile has troubles on Darwin.
+ platforms = lib.platforms.gnu;
- # On GNU/Linux the `test_suite' process sometimes stays around, so
- # forcefully terminate it.
- (if stdenv.isLinux
- then { postCheck = "${psmisc}/bin/killall test_suite || true"; }
- else { }))
+ broken = true; # needs patch for gets()
+ };
+}