dbus-sharp-2_0: init at 0.8.1

This commit is contained in:
Al Zohali 2016-01-24 13:40:32 +03:00
parent 0ee75214f3
commit d9a7918055
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{stdenv, fetchFromGitHub, pkgconfig, dbus, mono, autoreconfHook }:
stdenv.mkDerivation rec {
name = "dbus-sharp-${version}";
version = "0.8.1";
src = fetchFromGitHub {
owner = "mono";
repo = "dbus-sharp";
rev = "v${version}";
sha256 = "1g5lblrvkd0wnhfzp326by6n3a9mj2bj7a7646g0ziwgsxp5w6y7";
};
nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ mono ];
dontStrip = true;
meta = with stdenv.lib; {
description = "D-Bus for .NET";
platforms = platforms.linux;
};
}

View file

@ -6594,6 +6594,8 @@ let
dbus_java = callPackage ../development/libraries/java/dbus-java { };
dbus_python = pythonPackages.dbus;
dbus-sharp-2_0 = callPackage ../development/libraries/dbus-sharp { };
# Should we deprecate these? Currently there are many references.
dbus_tools = pkgs.dbus.tools;
dbus_libs = pkgs.dbus.libs;