2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, qmake, pkg-config, wrapQtAppsHook
|
2018-06-06 20:56:57 +01:00
|
|
|
, qtbase, qttools, qtwebkit, sqlite
|
|
|
|
}:
|
2016-11-05 12:33:43 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "quiterss";
|
2020-04-21 20:21:25 +01:00
|
|
|
version = "0.19.4";
|
2016-11-05 12:33:43 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "QuiteRSS";
|
|
|
|
repo = "quiterss";
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2020-04-21 20:21:25 +01:00
|
|
|
sha256 = "1cgvl67vhn5y7bj5gbjbgk26bhb0196bgrgsp3r5fmrislarj8s6";
|
2016-11-05 12:33:43 +00:00
|
|
|
};
|
|
|
|
|
2020-04-21 20:21:25 +01:00
|
|
|
nativeBuildInputs = [ qmake pkg-config wrapQtAppsHook ];
|
2017-06-02 16:40:19 +01:00
|
|
|
buildInputs = [ qtbase qttools qtwebkit sqlite.dev ];
|
2016-11-05 12:33:43 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-11-05 12:33:43 +00:00
|
|
|
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++
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://quiterss.org";
|
2020-04-21 20:21:25 +01:00
|
|
|
changelog = "https://github.com/QuiteRSS/quiterss/blob/${version}/CHANGELOG";
|
2016-11-05 12:33:43 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ primeos ];
|
|
|
|
};
|
|
|
|
}
|