26 lines
613 B
Nix
26 lines
613 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, mono, dbus-sharp-1_0 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dbus-sharp-glib-${version}";
|
|
version = "0.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mono";
|
|
repo = "dbus-sharp-glib";
|
|
|
|
rev = "v${version}";
|
|
sha256 = "0z8ylzby8n5sar7aywc8rngd9ap5qqznadsscp5v34cacdfz1gxm";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
|
buildInputs = [ mono dbus-sharp-1_0 ];
|
|
|
|
dontStrip = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "D-Bus for .NET: GLib integration module";
|
|
platforms = platforms.linux;
|
|
license = licenses.mit;
|
|
};
|
|
}
|