sqlitebrowser: wrap Qt application

This commit is contained in:
Nikolay Amiantov
2017-05-03 18:00:04 +03:00
parent 53f896eb41
commit 61e5763694
2 changed files with 8 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, qt5, sqlite, cmake }:
{ stdenv, fetchFromGitHub, qtbase, qttools, makeQtWrapper, sqlite, cmake }:
stdenv.mkDerivation rec {
version = "3.9.1";
@@ -11,7 +11,8 @@ stdenv.mkDerivation rec {
sha256 = "1s7f2d7wx2i68x60z7wdws3il6m83k5n5w5wyjvr0mz0mih0s150";
};
buildInputs = [ qt5.qtbase qt5.qttools sqlite cmake ];
buildInputs = [ qtbase qttools sqlite ];
nativeBuildInputs = [ makeQtWrapper cmake ];
enableParallelBuilding = true;
@@ -19,10 +20,13 @@ stdenv.mkDerivation rec {
# A regression was introduced in CMakeLists.txt on v3.9.x
# See https://github.com/sqlitebrowser/sqlitebrowser/issues/832 and issues/755
patchPhase = ''
postPatch = ''
substituteInPlace CMakeLists.txt --replace 'project("DB Browser for SQLite")' 'project(sqlitebrowser)'
'';
postInstall = ''
wrapQtProgram $out/bin/sqlitebrowser
'';
meta = with stdenv.lib; {
description = "DB Browser for SQLite";