mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 13:16:40 +03:00
dbus-sharp-2_0: fix build (#46060)
This commit is contained in:
parent
59f5a65e72
commit
33fa23f6b3
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user