about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/dbus-sharp/dbus-sharp-1.0.nix
blob: eb1b20e29eb102eceecf828e2987df7e19e41c10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{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;
  };
}