nixpkgs/pkgs/development/libraries/libgepub/default.nix

32 lines
912 B
Nix
Raw Normal View History

{ stdenv, fetchurl, meson, ninja, pkgconfig, glib, gobject-introspection, gnome3
, webkitgtk, libsoup, libxml2, libarchive }:
2018-03-03 01:50:15 +01:00
2018-12-25 04:17:20 +01:00
stdenv.mkDerivation rec {
2018-03-03 01:50:15 +01:00
pname = "libgepub";
2018-03-13 02:03:18 +01:00
version = "0.6.0";
src = fetchurl {
2018-12-25 04:17:20 +01:00
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2018-03-13 02:03:18 +01:00
sha256 = "16dkyywqdnfngmwsgbyga0kl9vcnzczxi3lmhm27pifrq5f3k2n7";
};
doCheck = true;
nativeBuildInputs = [ meson ninja pkgconfig gobject-introspection ];
2017-09-19 04:30:07 +02:00
buildInputs = [ glib webkitgtk libsoup libxml2 libarchive ];
2018-03-03 01:50:15 +01:00
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
versionPolicy = "none";
};
};
meta = with stdenv.lib; {
description = "GObject based library for handling and rendering epub documents";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
maintainers = teams.gnome.members;
};
}