1{ stdenv, fetchurl, 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 nativeBuildInputs = [ pkgconfig ];
13 buildInputs = [ which mono ];
14
15 dontStrip = true;
16
17 configureFlags = [ "--disable-docs" ];
18
19 meta = with stdenv.lib; {
20 description = "A cross platform Zero Configuration Networking library for Mono and .NET";
21 homepage = http://www.mono-project.com/archived/monozeroconf/;
22 platforms = platforms.linux;
23 };
24}