solved the gobject error message

This commit is contained in:
Roelof Wobben 2013-11-30 10:50:40 +01:00 committed by Vladimír Čunát
parent 34df0b45ba
commit 43b894a5b3
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, autoreconfHook, fetchurl }: { stdenv, autoreconfHook, fetchurl, pkgconfig, gobjectIntrospection, glib }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "cjs"; name = "cjs";
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "16iazd5h2z27v9jxs4a8imwls5c1c690wk7i05r5ds3c3r4nrsig"; sha256 = "16iazd5h2z27v9jxs4a8imwls5c1c690wk7i05r5ds3c3r4nrsig";
}; };
buildInputs = [ autoreconfHook ]; buildInputs = [ autoreconfHook pkgconfig gobjectIntrospection glib];
patches = [./fix_configure_ac_gobject.patch]; patches = [./fix_configure_ac_gobject.patch];