31 lines
825 B
Nix
31 lines
825 B
Nix
{ stdenv, fetchFromGitHub, qmake, pkgconfig, wrapQtAppsHook
|
|
, qtbase, qttools, qtwebkit, sqlite
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "quiterss";
|
|
version = "0.19.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "QuiteRSS";
|
|
repo = "quiterss";
|
|
rev = version;
|
|
sha256 = "06m5mhzxvv8q2adaqcrar3sx2c1hc89h2i0qfjxmirfc5z67hdw2";
|
|
};
|
|
|
|
nativeBuildInputs = [ qmake pkgconfig wrapQtAppsHook ];
|
|
buildInputs = [ qtbase qttools qtwebkit sqlite.dev ];
|
|
|
|
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 ];
|
|
};
|
|
}
|