2020-06-04 14:25:54 -07:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, pkg-config
|
|
|
|
, intltool
|
|
|
|
, python3Packages
|
|
|
|
, wrapGAppsHook
|
|
|
|
, glib
|
|
|
|
, libxml2
|
|
|
|
, libxslt
|
|
|
|
, sqlite
|
|
|
|
, libsoup
|
|
|
|
, webkitgtk
|
|
|
|
, json-glib
|
|
|
|
, gst_all_1
|
|
|
|
, libnotify
|
|
|
|
, gtk3
|
|
|
|
, gsettings-desktop-schemas
|
|
|
|
, libpeas
|
|
|
|
, dconf
|
|
|
|
, librsvg
|
|
|
|
, gobject-introspection
|
|
|
|
, glib-networking
|
2014-03-09 10:51:40 -07:00
|
|
|
}:
|
2013-06-27 11:43:05 -07:00
|
|
|
|
2019-01-25 09:04:54 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2016-09-26 00:45:43 -07:00
|
|
|
pname = "liferea";
|
2019-01-25 09:04:54 -08:00
|
|
|
version = "1.12.6";
|
2013-06-27 11:43:05 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-01-25 09:04:54 -08:00
|
|
|
url = "https://github.com/lwindolf/${pname}/releases/download/v${version}/${pname}-${version}b.tar.bz2";
|
2020-06-01 01:59:41 -07:00
|
|
|
sha256 = "03pr1gmiv5y0i92bkhcxr8s311ll91chz19wb96jkixx32xav91d";
|
2013-06-27 11:43:05 -07:00
|
|
|
};
|
|
|
|
|
2020-06-04 14:25:54 -07:00
|
|
|
nativeBuildInputs = [
|
|
|
|
wrapGAppsHook
|
|
|
|
python3Packages.wrapPython
|
|
|
|
intltool
|
|
|
|
pkg-config
|
|
|
|
];
|
2017-03-03 14:01:17 -08:00
|
|
|
|
|
|
|
buildInputs = [
|
2020-06-04 14:25:54 -07:00
|
|
|
glib
|
|
|
|
gtk3
|
|
|
|
webkitgtk
|
|
|
|
libxml2
|
|
|
|
libxslt
|
|
|
|
sqlite
|
|
|
|
libsoup
|
|
|
|
libpeas
|
|
|
|
gsettings-desktop-schemas
|
|
|
|
json-glib
|
|
|
|
dconf
|
|
|
|
gobject-introspection
|
|
|
|
librsvg
|
|
|
|
glib-networking
|
|
|
|
libnotify
|
2017-03-03 14:01:17 -08:00
|
|
|
] ++ (with gst_all_1; [
|
2020-06-04 14:25:54 -07:00
|
|
|
gstreamer
|
|
|
|
gst-plugins-base
|
|
|
|
gst-plugins-good
|
|
|
|
gst-plugins-bad
|
2017-03-03 14:01:17 -08:00
|
|
|
]);
|
|
|
|
|
2020-06-04 14:25:54 -07:00
|
|
|
pythonPath = with python3Packages; [
|
|
|
|
pygobject3
|
|
|
|
pycairo
|
|
|
|
];
|
2013-06-27 11:43:05 -07:00
|
|
|
|
2013-11-27 03:44:09 -08:00
|
|
|
preFixup = ''
|
2017-03-03 14:01:17 -08:00
|
|
|
buildPythonPath "$out $pythonPath"
|
|
|
|
gappsWrapperArgs+=(--prefix PYTHONPATH : "$program_PYTHONPATH")
|
2014-03-09 10:51:40 -07:00
|
|
|
'';
|
|
|
|
|
2015-12-30 01:59:02 -08:00
|
|
|
meta = with stdenv.lib; {
|
2016-01-04 15:54:03 -08:00
|
|
|
description = "A GTK-based news feed aggregator";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://lzone.de/liferea/";
|
2015-12-30 01:59:02 -08:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ vcunat romildo ];
|
|
|
|
platforms = platforms.linux;
|
2014-03-10 19:37:42 -07: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 11:43:05 -07:00
|
|
|
};
|
|
|
|
}
|