From 70424e1209ca6e420d21821429d8b9220c295958 Mon Sep 17 00:00:00 2001 From: Sophie Taylor Date: Thu, 22 Dec 2016 13:16:15 +1000 Subject: [PATCH] ncurses: Create libtinfo symlink Some applications expect libtinfo to be a separate library to libncurses; this fixes that. --- pkgs/development/libraries/ncurses/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/ncurses/default.nix b/pkgs/development/libraries/ncurses/default.nix index 3eff1f3d5bb..bbf7d7108dd 100644 --- a/pkgs/development/libraries/ncurses/default.nix +++ b/pkgs/development/libraries/ncurses/default.nix @@ -102,6 +102,9 @@ stdenv.mkDerivation rec { done done + # create libtinfo symlink + ln -svf $out/lib/libncurses.$dylibtype $out/libtinfo.$dylibtype + # move some utilities to $bin # these programs are used at runtime and don't really belong in $dev moveToOutput "bin/clear" "$out"