summary refs log tree commit diff
path: root/pkgs/development/libraries/mono-zeroconf/default.nix
blob: 37195d385627799ca897b3c942475e1f389e92bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchurl, 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";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ 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;
    license = licenses.mit;
  };
}