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

31 lines
825 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, qmake, pkgconfig, 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";
2019-11-17 11:44:02 -08:00
version = "0.19.1";
2016-11-05 05:33:43 -07:00
src = fetchFromGitHub {
owner = "QuiteRSS";
repo = "quiterss";
2019-09-08 16:38:31 -07:00
rev = version;
2019-11-17 11:44:02 -08:00
sha256 = "0zr17r33g99ylvb1avcbixg2jiwisaks4x91lywv2dy3g6dkpxml";
2016-11-05 05:33:43 -07:00
};
nativeBuildInputs = [ qmake pkgconfig 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;
2016-11-05 05:33:43 -07:00
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ primeos ];
};
}