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 { mkDerivation, lib, fetchFromGitHub, cmake 2 - , qtbase, qttools, sqlite, wrapGAppsHook }: 3 4 mkDerivation 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 ]; 20 21 nativeBuildInputs = [ cmake qttools wrapGAppsHook ]; 22 23 meta = with lib; { 24 description = "DB Browser for SQLite";
··· 1 { mkDerivation, lib, fetchFromGitHub, cmake 2 + , qtbase, qttools, sqlcipher, wrapGAppsHook }: 3 4 mkDerivation 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 ]; 20 21 nativeBuildInputs = [ cmake qttools wrapGAppsHook ]; 22 + 23 + cmakeFlags = [ 24 + "-Dsqlcipher=1" 25 + ]; 26 27 meta = with lib; { 28 description = "DB Browser for SQLite";