From 3204c2753de75fa4fd6a66d5cbe909bac96cc681 Mon Sep 17 00:00:00 2001 From: Nick Novitski Date: Sat, 4 Jun 2016 15:14:47 +0000 Subject: gtypist: darwin compatibility (#15975) --- pkgs/games/gtypist/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'pkgs/games/gtypist') diff --git a/pkgs/games/gtypist/default.nix b/pkgs/games/gtypist/default.nix index c47a2317b0ef..0f19537c62ff 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 ]; }; } -- cgit 1.4.1