lowdown: remove extra brackets

This commit is contained in:
Dmitry Kalinkin
2021-05-30 22:10:20 -04:00
committed by GitHub
parent b62962b274
commit 259bf50810
+1 -1
View File
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
'';
# Fix lib extension so that fixDarwinDylibNames detects it
postInstall = lib.optionalString (stdenv.isDarwin) ''
postInstall = lib.optionalString stdenv.isDarwin ''
mv $lib/lib/liblowdown.{so,dylib}
'';