2017-03-03 22:01:17 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, python3Packages, wrapGAppsHook
|
2018-02-25 02:23:58 +00:00
|
|
|
, glib, libxml2, libxslt, sqlite, libsoup , webkitgtk, json-glib, gst_all_1
|
|
|
|
, libnotify, gtk3, gsettings-desktop-schemas, libpeas, dconf, librsvg
|
2019-09-12 15:25:05 +01:00
|
|
|
, gobject-introspection, glib-networking
|
2014-03-09 17:51:40 +00:00
|
|
|
}:
|
2013-06-27 19:43:05 +01:00
|
|
|
|
2019-01-25 17:04:54 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-09-26 08:45:43 +01:00
|
|
|
pname = "liferea";
|
2019-01-25 17:04:54 +00:00
|
|
|
version = "1.12.6";
|
2013-06-27 19:43:05 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-01-25 17:04:54 +00:00
|
|
|
url = "https://github.com/lwindolf/${pname}/releases/download/v${version}/${pname}-${version}b.tar.bz2";
|
|
|
|
sha256 = "sha256:03pr1gmiv5y0i92bkhcxr8s311ll91chz19wb96jkixx32xav91d";
|
2013-06-27 19:43:05 +01:00
|
|
|
};
|
|
|
|
|
2017-03-03 22:01:17 +00:00
|
|
|
nativeBuildInputs = [ wrapGAppsHook python3Packages.wrapPython intltool pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [
|
2018-02-25 02:23:58 +00:00
|
|
|
glib gtk3 webkitgtk libxml2 libxslt sqlite libsoup gsettings-desktop-schemas
|
2018-12-02 11:41:15 +00:00
|
|
|
libpeas gsettings-desktop-schemas json-glib dconf gobject-introspection
|
2019-09-12 15:25:05 +01:00
|
|
|
librsvg glib-networking libnotify
|
2017-03-03 22:01:17 +00:00
|
|
|
] ++ (with gst_all_1; [
|
|
|
|
gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad
|
|
|
|
]);
|
|
|
|
|
|
|
|
pythonPath = with python3Packages; [ pygobject3 pycairo ];
|
2013-06-27 19:43:05 +01:00
|
|
|
|
2013-11-27 11:44:09 +00:00
|
|
|
preFixup = ''
|
2017-03-03 22:01:17 +00:00
|
|
|
buildPythonPath "$out $pythonPath"
|
|
|
|
gappsWrapperArgs+=(--prefix PYTHONPATH : "$program_PYTHONPATH")
|
2014-03-09 17:51:40 +00:00
|
|
|
'';
|
|
|
|
|
2015-12-30 09:59:02 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-01-04 23:54:03 +00:00
|
|
|
description = "A GTK-based news feed aggregator";
|
2013-06-27 19:43:05 +01:00
|
|
|
homepage = http://lzone.de/liferea/;
|
2015-12-30 09:59:02 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ vcunat romildo ];
|
|
|
|
platforms = platforms.linux;
|
2014-03-11 02:37:42 +00:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Liferea (Linux Feed Reader) is an RSS/RDF feed reader.
|
|
|
|
It's intended to be a clone of the Windows-only FeedReader.
|
|
|
|
It can be used to maintain a list of subscribed feeds,
|
|
|
|
browse through their items, and show their contents.
|
|
|
|
'';
|
2013-06-27 19:43:05 +01:00
|
|
|
};
|
|
|
|
}
|