2017-05-17 21:26:11 +02:00
|
|
|
{ stdenv, fetchFromGitHub, qtbase, qmake, qttools, qtwebkit, pkgconfig, sqlite }:
|
2016-11-05 13:33:43 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "quiterss-${version}";
|
2017-12-03 00:01:10 +01:00
|
|
|
version = "0.18.9";
|
2016-11-05 13:33:43 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "QuiteRSS";
|
|
|
|
repo = "quiterss";
|
|
|
|
rev = "${version}";
|
2017-12-03 00:01:10 +01:00
|
|
|
sha256 = "0n2rgzyxw6m29i8m8agri3cp5dbpjblhhyklvxsyzmkksnsxpw58";
|
2016-11-05 13:33:43 +01:00
|
|
|
};
|
|
|
|
|
2017-05-17 21:26:11 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig qmake ];
|
2017-06-02 17:40:19 +02:00
|
|
|
buildInputs = [ qtbase qttools qtwebkit sqlite.dev ];
|
2016-11-05 13:33:43 +01:00
|
|
|
|
|
|
|
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++
|
|
|
|
'';
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://quiterss.org;
|
2016-11-05 13:33:43 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ primeos ];
|
|
|
|
};
|
|
|
|
}
|