2017-11-02 00:16:24 -07:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, cmake, antlr
|
|
|
|
, qtbase, qttools, qscintilla, sqlite }:
|
2015-07-13 08:45:08 -07:00
|
|
|
|
2017-05-17 12:26:11 -07:00
|
|
|
mkDerivation rec {
|
2017-11-02 00:16:24 -07:00
|
|
|
version = "3.10.1";
|
2015-07-13 08:45:08 -07:00
|
|
|
name = "sqlitebrowser-${version}";
|
|
|
|
|
2016-03-07 17:29:56 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "sqlitebrowser";
|
|
|
|
owner = "sqlitebrowser";
|
|
|
|
rev = "v${version}";
|
2017-11-02 00:16:24 -07:00
|
|
|
sha256 = "1brzam8yv6sbdmbqsp7vglhd6wlx49g2ap8llr271zrkld4k3kar";
|
2015-07-13 08:45:08 -07:00
|
|
|
};
|
|
|
|
|
2017-11-02 00:16:24 -07:00
|
|
|
buildInputs = [ qtbase qscintilla sqlite ];
|
2017-05-17 12:26:11 -07:00
|
|
|
|
2017-11-02 00:16:24 -07:00
|
|
|
nativeBuildInputs = [ cmake antlr qttools ];
|
2017-05-17 12:26:11 -07:00
|
|
|
|
2017-11-02 00:16:24 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
# We have to patch out Test and PrintSupport to make this work with Qt 5.9
|
|
|
|
# It can go when the application supports 5.9
|
2017-05-03 08:00:04 -07:00
|
|
|
postPatch = ''
|
2017-11-02 00:16:24 -07:00
|
|
|
substituteInPlace CMakeLists.txt \
|
|
|
|
--replace Test "" \
|
|
|
|
--replace PrintSupport ""
|
|
|
|
|
|
|
|
substituteInPlace libs/qcustomplot-source/CMakeLists.txt \
|
|
|
|
--replace PrintSupport ""
|
2017-03-08 15:58:00 -08:00
|
|
|
'';
|
|
|
|
|
2017-05-17 12:26:11 -07:00
|
|
|
meta = with lib; {
|
2015-07-13 08:45:08 -07:00
|
|
|
description = "DB Browser for SQLite";
|
2017-08-01 13:03:30 -07:00
|
|
|
homepage = http://sqlitebrowser.org/;
|
2015-07-13 08:45:08 -07:00
|
|
|
license = licenses.gpl3;
|
2018-04-06 01:57:19 -07:00
|
|
|
maintainers = with maintainers; [ ];
|
2015-07-13 08:45:08 -07:00
|
|
|
platforms = platforms.linux; # can only test on linux
|
|
|
|
};
|
|
|
|
}
|