sqlitebrowser: fix darwin build

main
Kira Bruneau 3 years ago
parent 05abd836d2
commit 73df68c1ab
  1. 7
      pkgs/development/tools/database/sqlitebrowser/default.nix

@ -1,5 +1,6 @@
{ mkDerivation, lib, fetchFromGitHub, cmake
, qtbase, qttools, sqlcipher, wrapGAppsHook }:
{ lib, stdenv, mkDerivation, fetchFromGitHub, cmake
, qtbase, qttools, sqlcipher, wrapGAppsHook, qtmacextras
}:
mkDerivation rec {
pname = "sqlitebrowser";
@ -16,7 +17,7 @@ mkDerivation rec {
# but qscintilla is currently in a bit of a mess as some consumers expect a
# -qt4 or -qt5 prefix while others do not.
# We *really* should get that cleaned up.
buildInputs = [ qtbase sqlcipher ];
buildInputs = [ qtbase sqlcipher ] ++ lib.optionals stdenv.isDarwin [ qtmacextras ];
nativeBuildInputs = [ cmake qttools wrapGAppsHook ];

Loading…
Cancel
Save