3
0
Fork 0
forked from mirrors/nixpkgs

ncurses: Don't install static libraries

Nixpkgs convention is not to install static libraries.
This commit is contained in:
Eelco Dolstra 2015-06-01 20:45:48 +02:00
parent 779ab6bfc7
commit cb9429bd31

View file

@ -89,6 +89,10 @@ stdenv.mkDerivation rec {
ln -svf libncurses.so $out/lib/libcurses.so
'';
preFixup = ''
rm $out/lib/*.a
'';
meta = {
description = "Free software emulation of curses in SVR4 and more";