gio-sharp: add missing glib dependency

This commit is contained in:
Pierre Bourdon 2020-06-14 11:56:33 +02:00
parent f96842292f
commit 0cb5116faf
No known key found for this signature in database
GPG Key ID: 6FB80DCD84DA0F1C

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, autoconf, automake, which, pkgconfig, mono, gtk-sharp-2_0 }: { stdenv, fetchFromGitHub, autoconf, automake, which, pkgconfig, mono, glib, gtk-sharp-2_0 }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "gio-sharp"; pname = "gio-sharp";
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
}; };
nativeBuildInputs = [ pkgconfig autoconf automake which ]; nativeBuildInputs = [ pkgconfig autoconf automake which ];
buildInputs = [ mono gtk-sharp-2_0 ]; buildInputs = [ mono glib gtk-sharp-2_0 ];
dontStrip = true; dontStrip = true;