diff --git a/pkgs/development/tools/database/sqlitebrowser/default.nix b/pkgs/development/tools/database/sqlitebrowser/default.nix index c8ab79a34dd4..0a4df4bd21b7 100644 --- a/pkgs/development/tools/database/sqlitebrowser/default.nix +++ b/pkgs/development/tools/database/sqlitebrowser/default.nix @@ -1,5 +1,5 @@ { mkDerivation, lib, fetchFromGitHub, cmake -, qtbase, qttools, sqlite, wrapGAppsHook }: +, qtbase, qttools, sqlcipher, wrapGAppsHook }: mkDerivation rec { pname = "sqlitebrowser"; @@ -16,10 +16,14 @@ 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 sqlite ]; + buildInputs = [ qtbase sqlcipher ]; nativeBuildInputs = [ cmake qttools wrapGAppsHook ]; + cmakeFlags = [ + "-Dsqlcipher=1" + ]; + meta = with lib; { description = "DB Browser for SQLite"; homepage = "https://sqlitebrowser.org/";