quiterss: Set QT_PLUGIN_PATH (fixes a few problems)
This commit is contained in:
parent
fe0c07a6c0
commit
cad18959fb
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, qmake, pkgconfig
|
||||
{ stdenv, fetchFromGitHub, qmake, pkgconfig, makeWrapper
|
||||
, qtbase, qttools, qtwebkit, sqlite
|
||||
}:
|
||||
|
||||
@ -13,9 +13,14 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "0xav9qr8n6310636nfbgx4iix65fs3ya5rz2isxsf38bkjm7r3pa";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ qmake pkgconfig ];
|
||||
nativeBuildInputs = [ qmake pkgconfig makeWrapper ];
|
||||
buildInputs = [ qtbase qttools qtwebkit sqlite.dev ];
|
||||
|
||||
postFixup = ''
|
||||
wrapProgram $out/bin/quiterss \
|
||||
--prefix QT_PLUGIN_PATH : "${qtbase}/${qtbase.qtPluginPrefix}"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A Qt-based RSS/Atom news feed reader";
|
||||
longDescription = ''
|
||||
|
Loading…
Reference in New Issue
Block a user