Merge pull request #142781 from xduugu/sqlitebrowser-sqlcipher

This commit is contained in:
Sandro 2021-10-25 16:41:44 +02:00 committed by GitHub
commit 9dbcdcfbae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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/";