3
0
Fork 0
forked from mirrors/nixpkgs

gnome3.gnome-characters: re-add gobject-introspection dependency

This commit is contained in:
Jan Tojnar 2017-12-04 00:03:20 +01:00
parent 79dd83d466
commit 2e6f01d9a6
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -1,12 +1,12 @@
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
, intltool, gjs, gdk_pixbuf, librsvg }:
, intltool, gobjectIntrospection, gjs, gdk_pixbuf, librsvg }:
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkgconfig wrapGAppsHook intltool ];
buildInputs = [
gtk3 wrapGAppsHook intltool gjs gdk_pixbuf
gtk3 gjs gdk_pixbuf gobjectIntrospection
librsvg gnome3.gsettings_desktop_schemas gnome3.defaultIconTheme
];