about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-09-18 13:57:20 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2019-09-18 13:57:20 -0400
commit4c85abae94b0a55ff76387c1f1793370a170dda8 (patch)
tree8bf2eac091b19a5b1ddc4b811ee4ed6523ad5870 /pkgs/applications/editors
parent2c32f91bfc3d50175dd1f1eb87bf34626b7e8ab5 (diff)
downloadnixlib-4c85abae94b0a55ff76387c1f1793370a170dda8.tar
nixlib-4c85abae94b0a55ff76387c1f1793370a170dda8.tar.gz
nixlib-4c85abae94b0a55ff76387c1f1793370a170dda8.tar.bz2
nixlib-4c85abae94b0a55ff76387c1f1793370a170dda8.tar.lz
nixlib-4c85abae94b0a55ff76387c1f1793370a170dda8.tar.xz
nixlib-4c85abae94b0a55ff76387c1f1793370a170dda8.tar.zst
nixlib-4c85abae94b0a55ff76387c1f1793370a170dda8.zip
treewide: use libtinfo.so.5 where needed
This was originally added in

https://github.com/NixOS/nixpkgs/pull/21350

best to use this name for clarity.
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/jetbrains/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/jetbrains/default.nix b/pkgs/applications/editors/jetbrains/default.nix
index a33b9531730f..a302be304e57 100644
--- a/pkgs/applications/editors/jetbrains/default.nix
+++ b/pkgs/applications/editors/jetbrains/default.nix
@@ -1,6 +1,6 @@
 { lib, stdenv, callPackage, fetchurl
 , python
-, jdk, cmake, libxml2, zlib, python3, ncurses
+, jdk, cmake, libxml2, zlib, python3, ncurses5
 }:
 
 with stdenv.lib;
@@ -34,7 +34,7 @@ let
 
           lldbLibPath=$out/clion-${version}/bin/lldb/linux/lib
           interp="$(cat $NIX_CC/nix-support/dynamic-linker)"
-          ln -s ${ncurses.out}/lib/libncurses.so $lldbLibPath/libtinfo.so.5
+          ln -s ${ncurses5.out}/lib/libtinfo.so.5 $lldbLibPath/libtinfo.so.5
 
           patchelf --set-interpreter $interp \
             --set-rpath "${lib.makeLibraryPath [ libxml2 zlib stdenv.cc.cc.lib ]}:$lldbLibPath" \