forked from mirrors/nixpkgs
Merge pull request #211138 from imsofi/init/gnome-epub-thumbnailer
gnome-epub-thumbnailer: init at 1.7
This commit is contained in:
commit
d7705c01ef
53
pkgs/applications/misc/gnome-epub-thumbnailer/default.nix
Normal file
53
pkgs/applications/misc/gnome-epub-thumbnailer/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -7566,6 +7566,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 {};
|
||||
|
|
Loading…
Reference in a new issue