mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 07:00:43 +00:00
gnome3.gspell: re-add gobject introspection dependency
This commit is contained in:
parent
184f8ff69a
commit
7e5717a209
|
@ -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; {
|
||||
|
|
Loading…
Reference in a new issue