2017-11-02 08:16:24 +01:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, cmake, antlr
|
2020-06-22 11:19:35 +02:00
|
|
|
, qtbase, qttools, sqlite }:
|
2015-07-13 17:45:08 +02:00
|
|
|
|
2017-05-17 21:26:11 +02:00
|
|
|
mkDerivation rec {
|
2019-05-11 13:37:19 +02:00
|
|
|
pname = "sqlitebrowser";
|
2020-06-22 11:19:35 +02:00
|
|
|
version = "3.12.0";
|
2015-07-13 17:45:08 +02:00
|
|
|
|
2016-03-08 02:29:56 +01:00
|
|
|
src = fetchFromGitHub {
|
2020-06-22 11:19:35 +02:00
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "1arv4rzl8s1vjjqzz35l2b1rfzr2b8b23v97fdw1kdxpwvs63l99";
|
2015-07-13 17:45:08 +02:00
|
|
|
};
|
|
|
|
|
2020-06-22 11:19:35 +02: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.
|
|
|
|
buildInputs = [ antlr qtbase sqlite ];
|
2017-05-17 21:26:11 +02:00
|
|
|
|
2019-08-26 13:03:42 +02:00
|
|
|
nativeBuildInputs = [ cmake qttools ];
|
2019-05-11 13:37:19 +02:00
|
|
|
|
2017-05-17 21:26:11 +02:00
|
|
|
meta = with lib; {
|
2015-07-13 17:45:08 +02:00
|
|
|
description = "DB Browser for SQLite";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://sqlitebrowser.org/";
|
2015-07-13 17:45:08 +02:00
|
|
|
license = licenses.gpl3;
|
2020-06-22 11:19:35 +02:00
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
2019-08-26 13:20:59 +02:00
|
|
|
platforms = platforms.unix;
|
2015-07-13 17:45:08 +02:00
|
|
|
};
|
|
|
|
}
|