Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / dbus-sharp / dbus-sharp-1.0.nix
blobeb1b20e29eb102eceecf828e2987df7e19e41c10
1 {lib, stdenv, fetchFromGitHub, pkg-config, mono, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "dbus-sharp";
5   version = "0.7";
7   src = fetchFromGitHub {
8     owner = "mono";
9     repo = "dbus-sharp";
11     rev = "v${version}";
12     sha256 = "13qlqx9wqahfpzzl59157cjxprqcx2bd40w5gb2bs3vdx058p562";
13   };
15   nativeBuildInputs = [ pkg-config autoreconfHook ];
16   buildInputs = [ mono ];
18   dontStrip = true;
20   meta = with lib; {
21     description = "D-Bus for .NET";
22     platforms = platforms.linux;
23     license = licenses.mit;
24   };