at v192 28 lines 773 B view raw
1{ stdenv, fetchurl, pkgconfig, apacheHttpd_2_2, apr, avahi }: 2 3stdenv.mkDerivation rec { 4 name = "mod_dnssd-0.6"; 5 6 src = fetchurl { 7 url = "http://0pointer.de/lennart/projects/mod_dnssd/${name}.tar.gz"; 8 sha256 = "2cd171d76eba398f03c1d5bcc468a1756f4801cd8ed5bd065086e4374997c5aa"; 9 }; 10 11 configureFlags = [ "--disable-lynx" ]; 12 13 buildInputs = [ pkgconfig apacheHttpd_2_2 avahi apr ]; 14 15 installPhase = '' 16 mkdir -p $out/modules 17 cp src/.libs/mod_dnssd.so $out/modules 18 ''; 19 20 meta = with stdenv.lib; { 21 homepage = http://0pointer.de/lennart/projects/mod_dnssd; 22 description = "Provide Zeroconf support via DNS-SD using Avahi"; 23 license = licenses.asl20; 24 platforms = platforms.linux; 25 maintainers = with maintainers; [ lethalman ]; 26 }; 27} 28