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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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}
'';