mono-zeroconf: init at 0.9.0

This commit is contained in:
Al Zohali 2016-02-09 13:46:39 +03:00
parent a347e45c54
commit 6c9269670e
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, fetchurl, autoreconfHook, which, pkgconfig, mono }:
stdenv.mkDerivation rec {
name = "mono-zeroconf-${version}";
version = "0.9.0";
src = fetchurl {
url = "http://download.banshee-project.org/mono-zeroconf/mono-zeroconf-${version}.tar.bz2";
sha256 = "1qfp4qvsx7rc2shj1chi2y7fxn10rwi70rw2y54b2i8a4jq7gpkb";
};
buildInputs = [ pkgconfig which mono ];
dontStrip = true;
configureFlags = [ "--disable-docs" ];
meta = with stdenv.lib; {
description = "A cross platform Zero Configuration Networking library for Mono and .NET";
homepage = http://www.mono-project.com/archived/monozeroconf/;
platforms = platforms.linux;
};
}

View file

@ -8177,6 +8177,8 @@ let
mono-addins = callPackage ../development/libraries/mono-addins { };
mono-zeroconf = callPackage ../development/libraries/mono-zeroconf { };
movit = callPackage ../development/libraries/movit { };
mosquitto = callPackage ../servers/mqtt/mosquitto { };