forked from mirrors/nixpkgs
32 lines
874 B
Nix
32 lines
874 B
Nix
|
{ stdenv, fetchFromGitHub, qt5, qmakeHook, makeQtWrapper, pkgconfig, sqlite }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "quiterss-${version}";
|
||
|
version = "0.18.4";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "QuiteRSS";
|
||
|
repo = "quiterss";
|
||
|
rev = "${version}";
|
||
|
sha256 = "0gk4s41npg8is0jf4yyqpn8ksqrhwxq97z40iqcbd7dzsiv7bkvj";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ qt5.qtbase qt5.qttools qt5.qtwebkit qmakeHook makeQtWrapper pkgconfig sqlite.dev ];
|
||
|
|
||
|
postInstall = ''
|
||
|
wrapQtProgram "$out/bin/quiterss"
|
||
|
'';
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|