summary refs log tree commit diff
path: root/pkgs/games/gtypist/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/gtypist/default.nix')
-rw-r--r--pkgs/games/gtypist/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/games/gtypist/default.nix b/pkgs/games/gtypist/default.nix
index c47a2317b0e..0f19537c62f 100644
--- a/pkgs/games/gtypist/default.nix
+++ b/pkgs/games/gtypist/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, makeWrapper, ncurses, perl, fortune}:
+{stdenv, fetchurl, makeWrapper, libiconv, ncurses, perl, fortune}:
 
 stdenv.mkDerivation rec {
   name = "gtypist-${version}";
@@ -9,7 +9,8 @@ stdenv.mkDerivation rec {
     sha256 = "0xzrkkmj0b1dw3yr0m9hml2y634cc4h61im6zwcq57s7285z8fn1";
   };
 
-  buildInputs = [ makeWrapper ncurses perl fortune ];
+  buildInputs = [ makeWrapper ncurses perl fortune ]
+   ++ stdenv.lib.optional stdenv.isDarwin libiconv;
 
   preFixup = ''
      wrapProgram "$out/bin/typefortune" \
@@ -20,7 +21,7 @@ stdenv.mkDerivation rec {
     homepage = http://www.gnu.org/software/gtypist;
     description = "Universal typing tutor";
     license = licenses.gpl3Plus;
-    platforms = platforms.linux;
+    platforms = platforms.linux ++ platforms.darwin;
     maintainers = with maintainers; [ pSub ];
   };
 }