gnome-epub-thumbnailer: init at 1.7

This commit is contained in:
Sofi 2023-01-16 20:51:39 +01:00
parent 8e35002bc2
commit eb37ec00ff
No known key found for this signature in database
GPG key ID: 0A503D1D1B2722AF
2 changed files with 55 additions and 0 deletions

View file

@ -0,0 +1,53 @@
{ stdenv
, lib
, fetchurl
, wrapGAppsNoGuiHook
, meson
, ninja
, pkg-config
, gnome
, gdk-pixbuf
, glib
, libarchive
, librsvg
, libxml2
}:
stdenv.mkDerivation rec {
pname = "gnome-epub-thumbnailer";
version = "1.7";
src = fetchurl {
url = "mirror://gnome/sources/gnome-epub-thumbnailer/${lib.versions.majorMinor version}/gnome-epub-thumbnailer-${version}.tar.xz";
sha256 = "sha256-S7Ah++RCgNuY3xTBH6XkMgsWe4GpG9e6WGvqDE+il1I=";
};
nativeBuildInputs = [
wrapGAppsNoGuiHook
meson
ninja
pkg-config
];
buildInputs = [
gdk-pixbuf
glib
libarchive
librsvg
libxml2
];
passthru = {
updateScript = gnome.updateScript {
packageName = "gnome-epub-thumbnailer";
};
};
meta = with lib; {
description = "Thumbnailer for EPub and MOBI books";
homepage = "https://gitlab.gnome.org/GNOME/gnome-epub-thumbnailer";
license = licenses.gpl2Plus;
maintainers = teams.gnome.members;
platforms = platforms.linux;
};
}

View file

@ -7556,6 +7556,8 @@ with pkgs;
gst-plugins-bad = gst_all_1.gst-plugins-bad.override { enableZbar = true; };
};
gnome-epub-thumbnailer = callPackage ../applications/misc/gnome-epub-thumbnailer { };
gnome-extension-manager = callPackage ../applications/misc/gnome-extension-manager { };
gnome-feeds = callPackage ../applications/networking/feedreaders/gnome-feeds {};