summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorWill Dietz <github@wdtz.org>2018-03-21 12:57:03 -0500
committerGitHub <noreply@github.com>2018-03-21 12:57:03 -0500
commitc945978f5e7a4384739239bf9b57effc5ab539cb (patch)
tree7620885fab237bd7e48a9e312b66efb7e5a8112b /pkgs
parent3c6dcdb74e49d726a23cecb993ed6bd1f77d4acd (diff)
parenta7bc556ce994babb0616a4e49579ce928405085f (diff)
downloadnixlib-c945978f5e7a4384739239bf9b57effc5ab539cb.tar
nixlib-c945978f5e7a4384739239bf9b57effc5ab539cb.tar.gz
nixlib-c945978f5e7a4384739239bf9b57effc5ab539cb.tar.bz2
nixlib-c945978f5e7a4384739239bf9b57effc5ab539cb.tar.lz
nixlib-c945978f5e7a4384739239bf9b57effc5ab539cb.tar.xz
nixlib-c945978f5e7a4384739239bf9b57effc5ab539cb.tar.zst
nixlib-c945978f5e7a4384739239bf9b57effc5ab539cb.zip
Merge pull request #37576 from dtzWill/fix/gtkspell3-isocodes
gtkspell3: add missing isocodes dep
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/gtkspell/3.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/gtkspell/3.nix b/pkgs/development/libraries/gtkspell/3.nix
index 5376482e58a5..2e6ecd7b5204 100644
--- a/pkgs/development/libraries/gtkspell/3.nix
+++ b/pkgs/development/libraries/gtkspell/3.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, intltool}:
+{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, isocodes, intltool}:
 
 stdenv.mkDerivation rec {
   name = "gtkspell-${version}";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [ pkgconfig intltool ];
-  buildInputs = [ aspell gtk3 enchant ];
+  buildInputs = [ aspell gtk3 enchant isocodes ];
   propagatedBuildInputs = [ enchant ];
 
   meta = with stdenv.lib; {