nixpkgs/pkgs/development/libraries/dbus-sharp/dbus-sharp-1.0.nix

26 lines
536 B
Nix
Raw Normal View History

{lib, stdenv, fetchFromGitHub, pkg-config, mono, autoreconfHook }:
2016-01-24 10:42:07 +00:00
stdenv.mkDerivation rec {
pname = "dbus-sharp";
2016-01-24 10:42:07 +00:00
version = "0.7";
src = fetchFromGitHub {
owner = "mono";
repo = "dbus-sharp";
rev = "v${version}";
sha256 = "13qlqx9wqahfpzzl59157cjxprqcx2bd40w5gb2bs3vdx058p562";
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
2016-01-24 10:42:07 +00:00
buildInputs = [ mono ];
dontStrip = true;
meta = with lib; {
2016-01-24 10:42:07 +00:00
description = "D-Bus for .NET";
platforms = platforms.linux;
2018-10-08 20:32:14 +01:00
license = licenses.mit;
2016-01-24 10:42:07 +00:00
};
}