mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
fff938f72a
Also refactor meta.
55 lines
1.8 KiB
Nix
55 lines
1.8 KiB
Nix
{ stdenv, fetchurl, pkgconfig, intltool, python, pygobject3
|
|
, glib, gnome3, pango, libxml2, libxslt, sqlite, libsoup, glib_networking
|
|
, webkitgtk, json_glib, gobjectIntrospection, gst_all_1
|
|
, libnotify
|
|
, makeWrapper
|
|
}:
|
|
|
|
let pname = "liferea";
|
|
version = "1.10.17";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/lwindolf/${pname}/releases/download/v${version}/${name}.tar.bz2";
|
|
sha256 = "0svgl50w3hai31n5sm42sl0cd86c32cka0xzfy4r8gi0lyjdjxyx";
|
|
};
|
|
|
|
buildInputs = with gst_all_1; [
|
|
pkgconfig intltool python
|
|
glib gnome3.gtk pango libxml2 libxslt sqlite libsoup
|
|
webkitgtk json_glib gobjectIntrospection gnome3.gsettings_desktop_schemas
|
|
gnome3.libpeas gnome3.dconf
|
|
gst-plugins-base gst-plugins-good gst-plugins-bad
|
|
gnome3.libgnome_keyring gnome3.defaultIconTheme
|
|
libnotify
|
|
makeWrapper
|
|
];
|
|
|
|
preFixup = ''
|
|
for f in "$out"/bin/*; do
|
|
wrapProgram "$f" \
|
|
--prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${pygobject3})" \
|
|
--prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \
|
|
--prefix GIO_EXTRA_MODULES : "${gnome3.dconf}/lib/gio/modules:${glib_networking}/lib/gio/modules" \
|
|
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gnome3.gtk}/share:$out/share:$GSETTINGS_SCHEMAS_PATH"
|
|
done
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A GTK-based news feed agregator";
|
|
homepage = http://lzone.de/liferea/;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ vcunat romildo ];
|
|
platforms = platforms.linux;
|
|
|
|
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.
|
|
'';
|
|
};
|
|
}
|