Merge pull request #142781 from xduugu/sqlitebrowser-sqlcipher

authored by Sandro and committed by GitHub 9dbcdcfb acc5420d

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