quiterss: init at 0.18.4
This commit is contained in:
parent
9cdfb33401
commit
101ca1f454
2 changed files with 33 additions and 0 deletions
|
@ -0,0 +1,31 @@
|
||||||
|
{ stdenv, fetchFromGitHub, qt5, qmakeHook, makeQtWrapper, pkgconfig, sqlite }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "quiterss-${version}";
|
||||||
|
version = "0.18.4";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "QuiteRSS";
|
||||||
|
repo = "quiterss";
|
||||||
|
rev = "${version}";
|
||||||
|
sha256 = "0gk4s41npg8is0jf4yyqpn8ksqrhwxq97z40iqcbd7dzsiv7bkvj";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ qt5.qtbase qt5.qttools qt5.qtwebkit qmakeHook makeQtWrapper pkgconfig sqlite.dev ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
wrapQtProgram "$out/bin/quiterss"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A Qt-based RSS/Atom news feed reader";
|
||||||
|
longDescription = ''
|
||||||
|
QuiteRSS is a open-source cross-platform RSS/Atom news feeds reader
|
||||||
|
written on Qt/C++
|
||||||
|
'';
|
||||||
|
homepage = "https://quiterss.org";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ primeos ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -14260,6 +14260,8 @@ in
|
||||||
|
|
||||||
quirc = callPackage ../tools/graphics/quirc {};
|
quirc = callPackage ../tools/graphics/quirc {};
|
||||||
|
|
||||||
|
quiterss = qt5.callPackage ../applications/networking/newsreaders/quiterss {};
|
||||||
|
|
||||||
quodlibet = callPackage ../applications/audio/quodlibet { };
|
quodlibet = callPackage ../applications/audio/quodlibet { };
|
||||||
|
|
||||||
quodlibet-with-gst-plugins = callPackage ../applications/audio/quodlibet {
|
quodlibet-with-gst-plugins = callPackage ../applications/audio/quodlibet {
|
||||||
|
|
Loading…
Reference in a new issue