mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
Merge pull request #142781 from xduugu/sqlitebrowser-sqlcipher
This commit is contained in:
commit
9dbcdcfbae
@ -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/";
|
||||
|
Loading…
Reference in New Issue
Block a user