2021-06-20 10:23:37 +00:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, cmake
|
2021-07-03 09:36:19 +00:00
|
|
|
, qtbase, qttools, sqlite, wrapGAppsHook }:
|
2015-07-13 15:45:08 +00:00
|
|
|
|
2017-05-17 19:26:11 +00:00
|
|
|
mkDerivation rec {
|
2019-05-11 11:37:19 +00:00
|
|
|
pname = "sqlitebrowser";
|
2021-08-18 01:45:07 +00:00
|
|
|
version = "3.12.2";
|
2015-07-13 15:45:08 +00:00
|
|
|
|
2016-03-08 01:29:56 +00:00
|
|
|
src = fetchFromGitHub {
|
2020-06-22 09:19:35 +00:00
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
2020-12-29 21:30:31 +00:00
|
|
|
rev = "v${version}";
|
2021-08-18 01:45:07 +00:00
|
|
|
sha256 = "sha256-33iVic0kxemWld+SiHOWGlKFSi5fpk1RtLUiNDr7WNI=";
|
2015-07-13 15:45:08 +00:00
|
|
|
};
|
|
|
|
|
2020-06-22 09:19:35 +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-06-20 10:23:37 +00:00
|
|
|
buildInputs = [ qtbase sqlite ];
|
2017-05-17 19:26:11 +00:00
|
|
|
|
2021-07-03 09:36:19 +00:00
|
|
|
nativeBuildInputs = [ cmake qttools wrapGAppsHook ];
|
2019-05-11 11:37:19 +00:00
|
|
|
|
2017-05-17 19:26:11 +00:00
|
|
|
meta = with lib; {
|
2015-07-13 15:45:08 +00:00
|
|
|
description = "DB Browser for SQLite";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://sqlitebrowser.org/";
|
2015-07-13 15:45:08 +00:00
|
|
|
license = licenses.gpl3;
|
2020-06-22 09:19:35 +00:00
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
2019-08-26 11:20:59 +00:00
|
|
|
platforms = platforms.unix;
|
2015-07-13 15:45:08 +00:00
|
|
|
};
|
|
|
|
}
|