summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.24/core/libgepub/default.nix
blob: 47cb96de6c34f12ca3ccdc7022b8c94b3054c253 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, autoconf, pkgconfig, glib, gobjectIntrospection, gnome3
, webkitgtk, libsoup, libxml2, libarchive }:
stdenv.mkDerivation rec {
  name = "libgepub-${version}";
  version = "0.4";

  src = fetchurl {
    url = "mirror://gnome/sources/libgepub/${version}/${name}.tar.xz";
    sha256 = "5666a1c4d186d205bd2d91b71d4c1cd5426025569114a765dd913a564f149ff4";
  };

  doCheck = true;

  buildInputs = [ autoconf pkgconfig glib gobjectIntrospection webkitgtk libsoup
    libxml2 libarchive ];

  meta = with stdenv.lib; {
    description = "GObject based library for handling and rendering epub documents";
    license = licenses.lgpl21Plus;
    platforms = platforms.linux;
    maintainers = gnome3.maintainers;
  };
}