3
0
Fork 0
forked from mirrors/nixpkgs

gnome3.libgepub: add updateScript

This commit is contained in:
Jan Tojnar 2018-03-03 01:50:15 +01:00
parent 26dc2abc2b
commit e8ca1348b9
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -1,11 +1,14 @@
{ stdenv, fetchurl, meson, ninja, pkgconfig, glib, gobjectIntrospection, gnome3
, webkitgtk, libsoup, libxml2, libarchive }:
stdenv.mkDerivation rec {
name = "libgepub-${version}.2";
version = "0.5";
let
pname = "libgepub";
version = "0.5.2";
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://gnome/sources/libgepub/${version}/${name}.tar.xz";
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
sha256 = "0f1bczy3b00kj7mhm80xgpcgibh8h0pgcr46l4wifi45jacji0w4";
};
@ -14,6 +17,14 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ meson ninja pkgconfig gobjectIntrospection ];
buildInputs = [ glib webkitgtk libsoup libxml2 libarchive ];
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
attrPath = "gnome3.${pname}";
versionPolicy = "none";
};
};
meta = with stdenv.lib; {
description = "GObject based library for handling and rendering epub documents";
license = licenses.lgpl21Plus;