mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
sqlitebrowser: fix darwin build
This commit is contained in:
parent
05abd836d2
commit
73df68c1ab
@ -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…
Reference in New Issue
Block a user