25 lines
524 B
Nix
25 lines
524 B
Nix
{stdenv, fetchFromGitHub, pkgconfig, dbus, mono, autoreconfHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dbus-sharp-${version}";
|
|
version = "0.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mono";
|
|
repo = "dbus-sharp";
|
|
|
|
rev = "v${version}";
|
|
sha256 = "13qlqx9wqahfpzzl59157cjxprqcx2bd40w5gb2bs3vdx058p562";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
|
buildInputs = [ mono ];
|
|
|
|
dontStrip = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "D-Bus for .NET";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|