2021-12-06 16:07:01 +00:00
|
|
|
{ lib, stdenv, mkDerivation, fetchFromGitHub, cmake
|
|
|
|
, qtbase, qttools, sqlcipher, wrapGAppsHook, qtmacextras
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
mkDerivation rec {
|
|
|
|
pname = "sqlitebrowser";
|
2021-08-22 07:53:02 +00:00
|
|
|
version = "3.12.2";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2020-06-15 15:56:04 +00:00
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
2021-01-05 17:05:55 +00:00
|
|
|
rev = "v${version}";
|
2021-08-22 07:53:02 +00:00
|
|
|
sha256 = "sha256-33iVic0kxemWld+SiHOWGlKFSi5fpk1RtLUiNDr7WNI=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2020-06-15 15:56:04 +00:00
|
|
|
# We should be using qscintilla from nixpkgs instead of the vendored version,
|
|
|
|
# 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.
|
2021-12-06 16:07:01 +00:00
|
|
|
buildInputs = [ qtbase sqlcipher ] ++ lib.optionals stdenv.isDarwin [ qtmacextras ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-07-04 02:40:35 +00:00
|
|
|
nativeBuildInputs = [ cmake qttools wrapGAppsHook ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-10-28 06:52:43 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-Dsqlcipher=1"
|
|
|
|
];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "DB Browser for SQLite";
|
|
|
|
homepage = "https://sqlitebrowser.org/";
|
|
|
|
license = licenses.gpl3;
|
2020-06-15 15:56:04 +00:00
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|