1{ stdenv, fetchurl, autoreconfHook, which, pkgconfig, mono }:
2
3stdenv.mkDerivation rec {
4 name = "mono-zeroconf-${version}";
5 version = "0.9.0";
6
7 src = fetchurl {
8 url = "http://download.banshee-project.org/mono-zeroconf/mono-zeroconf-${version}.tar.bz2";
9 sha256 = "1qfp4qvsx7rc2shj1chi2y7fxn10rwi70rw2y54b2i8a4jq7gpkb";
10 };
11
12 buildInputs = [ pkgconfig which mono ];
13
14 dontStrip = true;
15
16 configureFlags = [ "--disable-docs" ];
17
18 meta = with stdenv.lib; {
19 description = "A cross platform Zero Configuration Networking library for Mono and .NET";
20 homepage = http://www.mono-project.com/archived/monozeroconf/;
21 platforms = platforms.linux;
22 };
23}