sqldiff, sqlite-analyzer: Fix Darwin build

lowPrio dropped, too, because the contents of these derivations don't
appear in any others.
This commit is contained in:
Benjamin Esham
2019-09-20 08:19:04 +02:00
committed by Doron Behar
parent e714798f27
commit 1e136a97fb
2 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, unzip, sqlite, tcl }:
{ stdenv, fetchurl, unzip, sqlite, tcl, Foundation }:
let
archiveVersion = import ./archive-version.nix stdenv.lib;
@@ -12,7 +12,7 @@ let
};
nativeBuildInputs = [ unzip ];
buildInputs = [ tcl ];
buildInputs = [ tcl ] ++ stdenv.lib.optional stdenv.isDarwin Foundation;
makeFlags = [ makeTarget ];