Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / dbus-sharp / default.nix
blobc64d7bbef9922a2945a7e887598171f17e527a9a
1 {lib, stdenv, fetchFromGitHub, pkg-config, mono4, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "dbus-sharp";
5   version = "0.8.1";
7   src = fetchFromGitHub {
8     owner = "mono";
9     repo = "dbus-sharp";
11     rev = "v${version}";
12     sha256 = "1g5lblrvkd0wnhfzp326by6n3a9mj2bj7a7646g0ziwgsxp5w6y7";
13   };
15   nativeBuildInputs = [ pkg-config autoreconfHook ];
17   # Use msbuild when https://github.com/NixOS/nixpkgs/pull/43680 is merged
18   # See: https://github.com/NixOS/nixpkgs/pull/46060
19   buildInputs = [ mono4 ];
21   dontStrip = true;
23   meta = with lib; {
24     description = "D-Bus for .NET";
25     platforms = platforms.linux;
26     license = licenses.mit;
27   };