t1lib: Conditionalize a recent change for Darwin

This commit is contained in:
John Wiegley 2015-05-20 15:41:23 -05:00
parent dbcfd854c8
commit 98ad87fb4d

View File

@ -27,7 +27,7 @@ stdenv.mkDerivation {
buildInputs = [ libX11 libXaw ];
buildFlags = "without_doc";
postInstall = "chmod +x $out/lib/*.so.*"; # ??
postInstall = stdenv.lib.optional (!stdenv.isDarwin) "chmod +x $out/lib/*.so.*"; # ??
}