3
0
Fork 0
forked from mirrors/nixpkgs
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 20:56:57 +01:00
, qtbase, qttools, qtwebkit, sqlite
}:
2016-11-05 12:33:43 +00:00
stdenv.mkDerivation rec {
pname = "quiterss";
2020-01-30 19:04:29 +00:00
version = "0.19.3";
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-01-30 19:04:29 +00:00
sha256 = "06m5mhzxvv8q2adaqcrar3sx2c1hc89h2i0qfjxmirfc5z67hdw2";
2016-11-05 12:33:43 +00:00
};
nativeBuildInputs = [ qmake pkgconfig wrapQtAppsHook ];
2017-06-02 16:40:19 +01:00
buildInputs = [ qtbase qttools qtwebkit sqlite.dev ];
2016-11-05 12:33:43 +00: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 12:33:43 +00:00
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ primeos ];
};
}