2017-03-03 22:01:17 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, python3Packages, wrapGAppsHook
|
|
|
|
, glib, libxml2, libxslt, sqlite, libsoup , webkitgtk, json_glib, gst_all_1
|
|
|
|
, libnotify, gtk3, gsettings_desktop_schemas, libpeas, dconf, librsvg
|
|
|
|
, gobjectIntrospection, glib_networking
|
2014-03-09 17:51:40 +00:00
|
|
|
}:
|
2013-06-27 19:43:05 +01:00
|
|
|
|
2016-09-26 08:45:43 +01:00
|
|
|
let
|
|
|
|
pname = "liferea";
|
2017-04-01 13:40:35 +01:00
|
|
|
version = "1.12-rc3";
|
2016-09-26 08:45:43 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
2014-03-09 17:51:40 +00:00
|
|
|
name = "${pname}-${version}";
|
2013-06-27 19:43:05 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-03-18 09:05:48 +00:00
|
|
|
url = "https://github.com/lwindolf/${pname}/releases/download/v${version}/${name}.tar.bz2";
|
2017-04-01 13:40:35 +01:00
|
|
|
sha256 = "0dd6hisqvc4ps6dx9ly34qx49ab1qa5h826b7dvf64mjqxa2v3kr";
|
2013-06-27 19:43:05 +01:00
|
|
|
};
|
|
|
|
|
2017-03-03 22:01:17 +00:00
|
|
|
nativeBuildInputs = [ wrapGAppsHook python3Packages.wrapPython intltool pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
glib gtk3 webkitgtk libxml2 libxslt sqlite libsoup gsettings_desktop_schemas
|
|
|
|
libpeas gsettings_desktop_schemas json_glib dconf gobjectIntrospection
|
2017-03-03 22:13:30 +00: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
|
|
|
};
|
|
|
|
}
|