ncurses: Don't install static libraries
Nixpkgs convention is not to install static libraries.
This commit is contained in:
parent
779ab6bfc7
commit
cb9429bd31
|
@ -89,6 +89,10 @@ stdenv.mkDerivation rec {
|
||||||
ln -svf libncurses.so $out/lib/libcurses.so
|
ln -svf libncurses.so $out/lib/libcurses.so
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
preFixup = ''
|
||||||
|
rm $out/lib/*.a
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Free software emulation of curses in SVR4 and more";
|
description = "Free software emulation of curses in SVR4 and more";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue