My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/dbus-sharp/dbus-sharp-1.0.nix

25 lines
536 B

{lib, stdenv, fetchFromGitHub, pkg-config, mono, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "dbus-sharp";
version = "0.7";
src = fetchFromGitHub {
owner = "mono";
repo = "dbus-sharp";
rev = "v${version}";
sha256 = "13qlqx9wqahfpzzl59157cjxprqcx2bd40w5gb2bs3vdx058p562";
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
buildInputs = [ mono ];
dontStrip = true;
meta = with lib; {
description = "D-Bus for .NET";
platforms = platforms.linux;
license = licenses.mit;
};
}