lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

sqlitebrowser: fix darwin build

+4 -3
+4 -3
pkgs/development/tools/database/sqlitebrowser/default.nix
··· 1 - { mkDerivation, lib, fetchFromGitHub, cmake 2 - , qtbase, qttools, sqlcipher, wrapGAppsHook }: 1 + { lib, stdenv, mkDerivation, fetchFromGitHub, cmake 2 + , qtbase, qttools, sqlcipher, wrapGAppsHook, qtmacextras 3 + }: 3 4 4 5 mkDerivation rec { 5 6 pname = "sqlitebrowser"; ··· 16 17 # but qscintilla is currently in a bit of a mess as some consumers expect a 17 18 # -qt4 or -qt5 prefix while others do not. 18 19 # We *really* should get that cleaned up. 19 - buildInputs = [ qtbase sqlcipher ]; 20 + buildInputs = [ qtbase sqlcipher ] ++ lib.optionals stdenv.isDarwin [ qtmacextras ]; 20 21 21 22 nativeBuildInputs = [ cmake qttools wrapGAppsHook ]; 22 23