3
0
Fork 0
forked from mirrors/nixpkgs

libncurses: on darwin systems remove .so files

svn path=/nixpkgs/trunk/; revision=20644
This commit is contained in:
Rob Vermaas 2010-03-16 10:37:41 +00:00
parent 891bf14096
commit 541beebe6f

View file

@ -1,6 +1,6 @@
{stdenv, fetchurl, unicode ? true}:
stdenv.mkDerivation rec {
stdenv.mkDerivation ( rec {
name = "ncurses-5.7";
src = fetchurl {
@ -53,4 +53,4 @@ stdenv.mkDerivation rec {
license = "X11";
};
}
} // ( if stdenv.isDarwin then { postFixup = "rm $out/lib/*.so"; } else {} ) )