forked from mirrors/nixpkgs
dbus-sharp-glib-2_0: init at 0.6
This commit is contained in:
parent
826c716ea3
commit
7254219b38
24
pkgs/development/libraries/dbus-sharp-glib/default.nix
Normal file
24
pkgs/development/libraries/dbus-sharp-glib/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, fetchFromGitHub, pkgconfig, mono, dbus-sharp-2_0, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "dbus-sharp-glib-${version}";
|
||||
version = "0.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mono";
|
||||
repo = "dbus-sharp-glib";
|
||||
|
||||
rev = "v${version}";
|
||||
sha256 = "0i39kfg731as6j0hlmasgj8dyw5xsak7rl2dlimi1naphhffwzm8";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
||||
buildInputs = [ mono dbus-sharp-2_0 ];
|
||||
|
||||
dontStrip = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "D-Bus for .NET: GLib integration module";
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -6597,6 +6597,8 @@ let
|
|||
dbus-sharp-1_0 = callPackage ../development/libraries/dbus-sharp/dbus-sharp-1.0.nix { };
|
||||
dbus-sharp-2_0 = callPackage ../development/libraries/dbus-sharp { };
|
||||
|
||||
dbus-sharp-glib-2_0 = callPackage ../development/libraries/dbus-sharp-glib { };
|
||||
|
||||
# Should we deprecate these? Currently there are many references.
|
||||
dbus_tools = pkgs.dbus.tools;
|
||||
dbus_libs = pkgs.dbus.libs;
|
||||
|
|
Loading…
Reference in a new issue