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

29 lines
808 B
Nix
Raw Normal View History

2017-05-17 21:26:11 +02:00
{ stdenv, fetchFromGitHub, qtbase, qmake, qttools, qtwebkit, pkgconfig, sqlite }:
2016-11-05 13:33:43 +01:00
stdenv.mkDerivation rec {
name = "quiterss-${version}";
2017-08-25 02:43:46 +02:00
version = "0.18.8";
2016-11-05 13:33:43 +01:00
src = fetchFromGitHub {
owner = "QuiteRSS";
repo = "quiterss";
rev = "${version}";
2017-08-25 02:43:46 +02:00
sha256 = "09mdxpv04zycrip1p5w6947348xfraicijddvxsr7d498r59b7ff";
2016-11-05 13:33:43 +01:00
};
2017-05-17 21:26:11 +02:00
nativeBuildInputs = [ pkgconfig qmake ];
2017-06-02 17:40:19 +02:00
buildInputs = [ qtbase qttools qtwebkit sqlite.dev ];
2016-11-05 13:33:43 +01: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 13:33:43 +01:00
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ primeos ];
};
}