nixpkgs/pkgs/applications/networking/feedreaders/feedreader/default.nix

44 lines
1.4 KiB
Nix
Raw Normal View History

2019-03-01 09:06:20 +01:00
{ stdenv, fetchFromGitHub, fetchpatch, meson, ninja, pkgconfig, vala, gettext, python3
2017-05-25 17:33:19 +02:00
, appstream-glib, desktop-file-utils, glibcLocales, wrapGAppsHook
, gtk3, libgee, libpeas, librest, webkitgtk, gsettings-desktop-schemas, hicolor-icon-theme
2019-03-01 09:06:20 +01:00
, curl, glib, gnome3, gst_all_1, json-glib, libnotify, libsecret, sqlite, gumbo, libxml2
2017-05-25 17:33:19 +02:00
}:
2019-01-28 19:32:27 +01:00
stdenv.mkDerivation rec {
pname = "feedreader";
version = "2.8.2";
2017-05-25 17:33:19 +02:00
src = fetchFromGitHub {
owner = "jangernert";
repo = pname;
2019-01-28 19:32:27 +01:00
rev = "v${version}";
sha256 = "1qm7scrz8xm68zizcfn13ll4ksdd004fahki7gbwqagsr1fg62y8";
2017-05-25 17:33:19 +02:00
};
nativeBuildInputs = [
meson ninja pkgconfig vala gettext appstream-glib desktop-file-utils
libxml2 python3 wrapGAppsHook
2017-05-25 17:33:19 +02:00
];
buildInputs = [
curl glib json-glib libnotify libsecret sqlite gumbo gtk3
2019-03-01 09:06:20 +01:00
libgee libpeas gnome3.libsoup librest webkitgtk gsettings-desktop-schemas
gnome3.gnome-online-accounts
hicolor-icon-theme # for setup hook
] ++ (with gst_all_1; [
2017-05-25 17:33:19 +02:00
gstreamer gst-plugins-base gst-plugins-good
]);
postPatch = ''
patchShebangs meson_post_install.py
'';
meta = with stdenv.lib; {
2019-01-28 19:32:27 +01:00
description = "A modern desktop application designed to complement existing web-based RSS accounts";
2017-05-25 17:33:19 +02:00
homepage = https://jangernert.github.io/FeedReader/;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ edwtjo worldofpeace ];
2017-05-25 17:33:19 +02:00
platforms = platforms.linux;
};
}