gnome3.libgepub: 0.4 → 0.5.2

This commit is contained in:
Jan Tojnar 2017-09-19 04:30:07 +02:00
parent 60dbe7eea4
commit aa0b3b60c0
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4
1 changed files with 6 additions and 7 deletions

View File

@ -1,19 +1,18 @@
{ stdenv, fetchurl, autoconf, pkgconfig, glib, gobjectIntrospection, gnome3
{ stdenv, fetchurl, meson, ninja, pkgconfig, glib, gobjectIntrospection, gnome3
, webkitgtk, libsoup, libxml2, libarchive }:
stdenv.mkDerivation rec {
name = "libgepub-${version}";
version = "0.4";
name = "libgepub-${version}.2";
version = "0.5";
src = fetchurl {
url = "mirror://gnome/sources/libgepub/${version}/${name}.tar.xz";
sha256 = "5666a1c4d186d205bd2d91b71d4c1cd5426025569114a765dd913a564f149ff4";
sha256 = "0f1bczy3b00kj7mhm80xgpcgibh8h0pgcr46l4wifi45jacji0w4";
};
doCheck = true;
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ autoconf glib gobjectIntrospection webkitgtk libsoup
libxml2 libarchive ];
nativeBuildInputs = [ meson ninja pkgconfig gobjectIntrospection ];
buildInputs = [ glib webkitgtk libsoup libxml2 libarchive ];
meta = with stdenv.lib; {
description = "GObject based library for handling and rendering epub documents";