dbus-sharp-2_0: fix build (#46060)

This commit is contained in:
worldofpeace 2018-09-04 21:38:07 +00:00 committed by xeji
parent 59f5a65e72
commit 33fa23f6b3

View File

@ -1,4 +1,4 @@
{stdenv, fetchFromGitHub, pkgconfig, mono, autoreconfHook }:
{stdenv, fetchFromGitHub, pkgconfig, mono48, autoreconfHook }:
stdenv.mkDerivation rec {
name = "dbus-sharp-${version}";
@ -13,7 +13,10 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ mono ];
# Use msbuild when https://github.com/NixOS/nixpkgs/pull/43680 is merged
# See: https://github.com/NixOS/nixpkgs/pull/46060
buildInputs = [ mono48 ];
dontStrip = true;