forked from mirrors/nixpkgs
mono-zeroconf: init at 0.9.0
This commit is contained in:
parent
a347e45c54
commit
6c9269670e
pkgs
23
pkgs/development/libraries/mono-zeroconf/default.nix
Normal file
23
pkgs/development/libraries/mono-zeroconf/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue