From 47c2be0ad02b8a73bfd9c7e892fd7d3f3cfcff7d Mon Sep 17 00:00:00 2001 From: hlolli Date: Mon, 31 May 2021 08:46:09 +0200 Subject: [PATCH] cleanup from github suggestions --- pkgs/tools/typesetting/lowdown/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/typesetting/lowdown/default.nix b/pkgs/tools/typesetting/lowdown/default.nix index 174052b9aecb..e45eda3326a1 100644 --- a/pkgs/tools/typesetting/lowdown/default.nix +++ b/pkgs/tools/typesetting/lowdown/default.nix @@ -16,8 +16,7 @@ stdenv.mkDerivation rec { preConfigure = lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) '' echo 'HAVE_SANDBOX_INIT=0' > configure.local - '' - "echo 'HAVE_SANDBOX_INIT=0' > configure.local"; + ''; configurePhase = '' runHook preConfigure @@ -39,7 +38,7 @@ stdenv.mkDerivation rec { installCheckPhase = '' runHook preInstallCheck echo '# TEST' > test.md - lowdown test.md + $out/bin/lowdown test.md runHook postInstallCheck '';