mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
dbus-sharp-2_0: init at 0.8.1
This commit is contained in:
parent
0ee75214f3
commit
d9a7918055
24
pkgs/development/libraries/dbus-sharp/default.nix
Normal file
24
pkgs/development/libraries/dbus-sharp/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user