GNU MyServer 0.10.
svn path=/nixpkgs/trunk/; revision=24359
This commit is contained in:
@@ -1,22 +1,27 @@
|
||||
{ fetchurl, stdenv, libgcrypt, libevent, libidn, gnutls
|
||||
, libxml2, zlib, texinfo, cppunit, xz }:
|
||||
, libxml2, zlib, guile, texinfo, cppunit, xz }:
|
||||
|
||||
let version = "0.9.2"; in
|
||||
let version = "0.10"; in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "myserver-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/myserver/${version}/${name}.tar.xz";
|
||||
sha256 = "110001ssyrvmvqrkxbz09a5m945ahh478v1l7aq31gh1l9j0cf6n";
|
||||
sha256 = "0w8njgka54if8ycd9cyxgmqa0ivv7r0rka7gda3x2rfr2z4nxvpb";
|
||||
};
|
||||
|
||||
patches = [ ./tests-in-chroot.patch ];
|
||||
patches = [ ./disable-dns-lookup-in-chroot.patch ];
|
||||
|
||||
buildInputs = [ libgcrypt libevent libidn gnutls libxml2 zlib texinfo xz ]
|
||||
buildInputs =
|
||||
[ libgcrypt libevent libidn gnutls libxml2 zlib guile texinfo xz ]
|
||||
++ stdenv.lib.optional doCheck cppunit;
|
||||
|
||||
makeFlags = [ "V=1" ];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
description = "GNU MyServer, a powerful and easy to configure web server";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user