easytier: 2.1.1 -> 2.1.2 (#376259)
[NixPkgs.git] / pkgs / by-name / li / liferea / package.nix
blob9490f4b5f502094704cda851ff1eeb0670775560
2   lib,
3   stdenv,
4   fetchurl,
5   pkg-config,
6   intltool,
7   python3Packages,
8   wrapGAppsHook3,
9   glib,
10   libxml2,
11   libxslt,
12   sqlite,
13   libsoup_3,
14   webkitgtk_4_1,
15   json-glib,
16   gst_all_1,
17   libnotify,
18   gtk3,
19   gsettings-desktop-schemas,
20   libpeas,
21   libsecret,
22   gobject-introspection,
23   glib-networking,
24   gitUpdater,
27 stdenv.mkDerivation rec {
28   pname = "liferea";
29   version = "1.15.8";
31   src = fetchurl {
32     url = "https://github.com/lwindolf/${pname}/releases/download/v${version}/${pname}-${version}.tar.bz2";
33     hash = "sha256-eBnysEppgYar2QEHq4P+5blmBgrW4H0jHPmYMXri8f8=";
34   };
36   nativeBuildInputs = [
37     wrapGAppsHook3
38     python3Packages.wrapPython
39     intltool
40     pkg-config
41     gobject-introspection
42   ];
44   buildInputs =
45     [
46       glib
47       gtk3
48       webkitgtk_4_1
49       libxml2
50       libxslt
51       sqlite
52       libsoup_3
53       libpeas
54       gsettings-desktop-schemas
55       json-glib
56       libsecret
57       glib-networking
58       libnotify
59     ]
60     ++ (with gst_all_1; [
61       gstreamer
62       gst-plugins-base
63       gst-plugins-good
64       gst-plugins-bad
65     ]);
67   enableParallelBuilding = true;
69   postFixup = ''
70     buildPythonPath ${python3Packages.pycairo}
71     patchPythonScript $out/lib/liferea/plugins/trayicon.py
72   '';
74   passthru.updateScript = gitUpdater {
75     url = "https://github.com/lwindolf/${pname}";
76     rev-prefix = "v";
77   };
79   meta = with lib; {
80     description = "GTK-based news feed aggregator";
81     homepage = "http://lzone.de/liferea/";
82     license = licenses.gpl2Plus;
83     maintainers = with maintainers; [
84       romildo
85       yayayayaka
86     ];
87     platforms = platforms.linux;
89     longDescription = ''
90       Liferea (Linux Feed Reader) is an RSS/RDF feed reader.
91       It's intended to be a clone of the Windows-only FeedReader.
92       It can be used to maintain a list of subscribed feeds,
93       browse through their items, and show their contents.
94     '';
95   };