1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

gnome3.gspell: re-add gobject introspection dependency

This commit is contained in:
Jan Tojnar 2017-12-13 12:24:15 +01:00
parent 184f8ff69a
commit 7e5717a209
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -1,11 +1,11 @@
{ stdenv, fetchurl, pkgconfig, glib, gtk3, enchant, isocodes, vala }:
{ stdenv, fetchurl, pkgconfig, glib, gtk3, enchant, isocodes, vala, gobjectIntrospection }:
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
propagatedBuildInputs = [ enchant ]; # required for pkgconfig
nativeBuildInputs = [ pkgconfig vala ];
nativeBuildInputs = [ pkgconfig vala gobjectIntrospection ];
buildInputs = [ glib gtk3 isocodes ];
meta = with stdenv.lib; {