···1{ mkDerivation, lib, fetchFromGitHub, cmake
2-, qtbase, qttools, sqlite, wrapGAppsHook }:
34mkDerivation rec {
5 pname = "sqlitebrowser";
···16 # but qscintilla is currently in a bit of a mess as some consumers expect a
17 # -qt4 or -qt5 prefix while others do not.
18 # We *really* should get that cleaned up.
19- buildInputs = [ qtbase sqlite ];
2021 nativeBuildInputs = [ cmake qttools wrapGAppsHook ];
00002223 meta = with lib; {
24 description = "DB Browser for SQLite";
···1{ mkDerivation, lib, fetchFromGitHub, cmake
2+, qtbase, qttools, sqlcipher, wrapGAppsHook }:
34mkDerivation rec {
5 pname = "sqlitebrowser";
···16 # but qscintilla is currently in a bit of a mess as some consumers expect a
17 # -qt4 or -qt5 prefix while others do not.
18 # We *really* should get that cleaned up.
19+ buildInputs = [ qtbase sqlcipher ];
2021 nativeBuildInputs = [ cmake qttools wrapGAppsHook ];
22+23+ cmakeFlags = [
24+ "-Dsqlcipher=1"
25+ ];
2627 meta = with lib; {
28 description = "DB Browser for SQLite";