nixpkgs/pkgs/development/libraries/mono-zeroconf/default.nix

26 lines
713 B
Nix
Raw Normal View History

{ stdenv, fetchurl, which, pkgconfig, mono }:
2016-02-09 10:46:39 +00:00
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";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ which mono ];
2016-02-09 10:46:39 +00:00
dontStrip = true;
configureFlags = [ "--disable-docs" ];
meta = with stdenv.lib; {
description = "A cross platform Zero Configuration Networking library for Mono and .NET";
homepage = https://www.mono-project.com/archived/monozeroconf/;
2016-02-09 10:46:39 +00:00
platforms = platforms.linux;
2018-10-23 18:01:58 +00:00
license = licenses.mit;
2016-02-09 10:46:39 +00:00
};
}