summary refs log tree commit diff
path: root/pkgs/development/libraries/gtkspell/3.nix
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-03-21 09:52:05 -0500
committerWill Dietz <w@wdtz.org>2018-03-21 10:21:42 -0500
commita7bc556ce994babb0616a4e49579ce928405085f (patch)
treea5290080dd6b7d647ea8d85871bd2ee53b056f0a /pkgs/development/libraries/gtkspell/3.nix
parentf2feb99990775d52bad41bdeb341816b9cc82249 (diff)
downloadnixpkgs-a7bc556ce994babb0616a4e49579ce928405085f.tar
nixpkgs-a7bc556ce994babb0616a4e49579ce928405085f.tar.gz
nixpkgs-a7bc556ce994babb0616a4e49579ce928405085f.tar.bz2
nixpkgs-a7bc556ce994babb0616a4e49579ce928405085f.tar.lz
nixpkgs-a7bc556ce994babb0616a4e49579ce928405085f.tar.xz
nixpkgs-a7bc556ce994babb0616a4e49579ce928405085f.tar.zst
nixpkgs-a7bc556ce994babb0616a4e49579ce928405085f.zip
gtkspell3: add missing isocodes dep
Diffstat (limited to 'pkgs/development/libraries/gtkspell/3.nix')
-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 5376482e58a..2e6ecd7b520 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; {