mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
solved the gobject error message
This commit is contained in:
parent
34df0b45ba
commit
43b894a5b3
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, autoreconfHook, fetchurl }:
|
||||
{ stdenv, autoreconfHook, fetchurl, pkgconfig, gobjectIntrospection, glib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cjs";
|
||||
|
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "16iazd5h2z27v9jxs4a8imwls5c1c690wk7i05r5ds3c3r4nrsig";
|
||||
};
|
||||
|
||||
buildInputs = [ autoreconfHook ];
|
||||
buildInputs = [ autoreconfHook pkgconfig gobjectIntrospection glib];
|
||||
|
||||
patches = [./fix_configure_ac_gobject.patch];
|
||||
|
||||
|
|
Loading…
Reference in a new issue