about summary refs log tree commit diff
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2021-05-30 22:10:20 -0400
committerGitHub <noreply@github.com>2021-05-30 22:10:20 -0400
commit259bf508105c7007c366090ab75c31dba503256b (patch)
treeb87078e7af39a77b68833582e1bc98aae52cfc59 /pkgs/tools/typesetting
parentb62962b2746ac9b21d5d22583cd30e1bbdb63964 (diff)
downloadnixlib-259bf508105c7007c366090ab75c31dba503256b.tar
nixlib-259bf508105c7007c366090ab75c31dba503256b.tar.gz
nixlib-259bf508105c7007c366090ab75c31dba503256b.tar.bz2
nixlib-259bf508105c7007c366090ab75c31dba503256b.tar.lz
nixlib-259bf508105c7007c366090ab75c31dba503256b.tar.xz
nixlib-259bf508105c7007c366090ab75c31dba503256b.tar.zst
nixlib-259bf508105c7007c366090ab75c31dba503256b.zip
lowdown: remove extra brackets
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/lowdown/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/typesetting/lowdown/default.nix b/pkgs/tools/typesetting/lowdown/default.nix
index 8c55985a404c..e7280f06529e 100644
--- a/pkgs/tools/typesetting/lowdown/default.nix
+++ b/pkgs/tools/typesetting/lowdown/default.nix
@@ -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}
   '';