3
0
Fork 0
forked from mirrors/nixpkgs

mod_dnssd: new apache httpd 2.2 module

Provide Zeroconf support via DNS-SD using Avahi

http://0pointer.de/lennart/projects/mod_dnssd
This commit is contained in:
Luca Bruno 2014-04-12 12:48:16 +02:00
parent d3a34c1862
commit e08861a4cd
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv, fetchurl, pkgconfig, apacheHttpd_2_2, apr, avahi }:
stdenv.mkDerivation rec {
name = "mod_dnssd-0.6";
src = fetchurl {
url = "http://0pointer.de/lennart/projects/mod_dnssd/${name}.tar.gz";
sha256 = "2cd171d76eba398f03c1d5bcc468a1756f4801cd8ed5bd065086e4374997c5aa";
};
configureFlags = [ "--disable-lynx" ];
buildInputs = [ pkgconfig apacheHttpd_2_2 avahi apr ];
installPhase = ''
mkdir -p $out/modules
cp src/.libs/mod_dnssd.so $out/modules
'';
meta = with stdenv.lib; {
homepage = http://0pointer.de/lennart/projects/mod_dnssd;
description = "Provide Zeroconf support via DNS-SD using Avahi";
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ lethalman ];
};
}

View file

@ -6451,6 +6451,8 @@ let
memcached = callPackage ../servers/memcached {};
mod_dnssd = callPackage ../servers/http/apache-modules/mod_dnssd/default.nix { };
mod_evasive = callPackage ../servers/http/apache-modules/mod_evasive { };
mod_python = callPackage ../servers/http/apache-modules/mod_python { };