3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/feedreaders/newsflash/default.nix

89 lines
1.6 KiB
Nix
Raw Normal View History

2020-07-22 05:09:19 +01:00
{ lib
, rustPlatform
, fetchFromGitLab
, meson
, ninja
, pkg-config
, wrapGAppsHook
, gdk-pixbuf
, glib
2020-07-22 05:09:19 +01:00
, gtk3
, libhandy
, openssl
, sqlite
, webkitgtk
, glib-networking
, librsvg
, gst_all_1
2020-07-22 05:09:19 +01:00
}:
rustPlatform.buildRustPackage rec {
pname = "newsflash";
2020-08-15 00:26:37 +01:00
version = "1.0.5";
2020-07-22 05:09:19 +01:00
src = fetchFromGitLab {
owner = "news-flash";
repo = "news_flash_gtk";
rev = version;
2020-08-15 00:26:37 +01:00
sha256 = "0kh1xqvxfz58gnrl8av0zkig9vcgmx9iaxw5p6gdm8a7gv18nvp3";
2020-07-22 05:09:19 +01:00
};
2020-08-15 00:26:37 +01:00
cargoSha256 = "059sppidbxzjk8lmjq41d5qbymp9j9v2qr0jxd7xg9avr0klwc2s";
2020-07-22 05:09:19 +01:00
patches = [
./no-post-install.patch
];
postPatch = ''
chmod +x build-aux/cargo.sh
patchShebangs .
'';
nativeBuildInputs = [
meson
ninja
pkg-config
wrapGAppsHook
# Provides setup hook to fix "Unrecognized image file format"
2020-07-22 05:09:19 +01:00
gdk-pixbuf
# Provides glib-compile-resources to compile gresources
2020-07-22 05:09:19 +01:00
glib
];
buildInputs = [
2020-07-22 05:09:19 +01:00
gtk3
libhandy
openssl
sqlite
webkitgtk
# TLS support for loading external content in webkitgtk WebView
glib-networking
# SVG support for gdk-pixbuf
librsvg
] ++ (with gst_all_1; [
2020-08-10 04:41:04 +01:00
# Audio & video support for webkitgtk WebView
gstreamer
gst-plugins-base
gst-plugins-good
gst-plugins-bad
]);
2020-07-22 05:09:19 +01:00
# Unset default rust phases to use meson & ninja instead
configurePhase = null;
buildPhase = null;
checkPhase = null;
installPhase = null;
installCheckPhase = null;
meta = with lib; {
description = "A modern feed reader designed for the GNOME desktop";
homepage = "https://gitlab.com/news-flash/news_flash_gtk";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ metadark ];
};
}