nixpkgs/pkgs/applications/networking/newsreaders/quiterss/default.nix

32 lines
911 B
Nix
Raw Normal View History

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