Update pkgs/tools/typesetting/lowdown/default.nix
Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>
This commit is contained in:
parent
db89e667af
commit
33e9bc9b43
1 changed files with 3 additions and 1 deletions
|
@ -14,7 +14,9 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ which ]
|
||||
++ lib.optionals stdenv.isDarwin [ fixDarwinDylibNames ];
|
||||
|
||||
preConfigure = lib.optionalString (stdenv.isDarwin && stdenv.isAarch64)
|
||||
preConfigure = lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) ''
|
||||
echo 'HAVE_SANDBOX_INIT=0' > configure.local
|
||||
''
|
||||
"echo 'HAVE_SANDBOX_INIT=0' > configure.local";
|
||||
|
||||
configurePhase = ''
|
||||
|
|
Loading…
Reference in a new issue