2018-09-04 22:38:07 +01:00
|
|
|
{stdenv, fetchFromGitHub, pkgconfig, mono48, autoreconfHook }:
|
2016-01-24 10:40:32 +00:00
|
|
|
|
|
|
|
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 ];
|
2018-09-04 22:38:07 +01:00
|
|
|
|
|
|
|
# Use msbuild when https://github.com/NixOS/nixpkgs/pull/43680 is merged
|
|
|
|
# See: https://github.com/NixOS/nixpkgs/pull/46060
|
|
|
|
buildInputs = [ mono48 ];
|
2016-01-24 10:40:32 +00:00
|
|
|
|
|
|
|
dontStrip = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "D-Bus for .NET";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|