mono-addins: fix build (#46354)

This commit is contained in:
worldofpeace 2018-09-08 04:06:58 -04:00 committed by xeji
parent f223f417fa
commit 2031c0ebfe

View File

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