summary refs log tree commit diff
path: root/pkgs/development/libraries/gtkspell
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2013-07-14 14:46:51 +0400
committerMichael Raskin <7c6f434c@mail.ru>2013-07-14 14:47:28 +0400
commit9566d6617114765a003cb84d9cd3139b2fadbf67 (patch)
tree3df83a18b63fd752f3b598474adffd7c2a3f6ad8 /pkgs/development/libraries/gtkspell
parent6eecf5bf67bc8f30d6c3069b86fe7223729cfd23 (diff)
downloadnixpkgs-9566d6617114765a003cb84d9cd3139b2fadbf67.tar
nixpkgs-9566d6617114765a003cb84d9cd3139b2fadbf67.tar.gz
nixpkgs-9566d6617114765a003cb84d9cd3139b2fadbf67.tar.bz2
nixpkgs-9566d6617114765a003cb84d9cd3139b2fadbf67.tar.lz
nixpkgs-9566d6617114765a003cb84d9cd3139b2fadbf67.tar.xz
nixpkgs-9566d6617114765a003cb84d9cd3139b2fadbf67.tar.zst
nixpkgs-9566d6617114765a003cb84d9cd3139b2fadbf67.zip
Fix gtkspell
Diffstat (limited to 'pkgs/development/libraries/gtkspell')
-rw-r--r--pkgs/development/libraries/gtkspell/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/gtkspell/default.nix b/pkgs/development/libraries/gtkspell/default.nix
index 017c5be403a..030375938a6 100644
--- a/pkgs/development/libraries/gtkspell/default.nix
+++ b/pkgs/development/libraries/gtkspell/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, gtk, aspell, pkgconfig}:
+{stdenv, fetchurl, gtk, aspell, pkgconfig, enchant, intltool}:
 
 stdenv.mkDerivation {
   name = "gtkspell-2.0.16";
@@ -8,5 +8,5 @@ stdenv.mkDerivation {
     sha256 = "00hdv28bp72kg1mq2jdz1sdw2b8mb9iclsp7jdqwpck705bdriwg";
   };
   
-  buildInputs = [aspell pkgconfig gtk];
+  buildInputs = [aspell pkgconfig gtk enchant intltool];
 }