gnome3.libzapojit: add updateScript

This commit is contained in:
Jan Tojnar 2018-03-03 06:37:42 +01:00
parent f54fd9e1dd
commit 90b232900f
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -1,18 +1,30 @@
{ stdenv, fetchurl, pkgconfig, glib, intltool, json-glib, rest, libsoup, gtk, gnome-online-accounts }:
{ stdenv, fetchurl, pkgconfig, glib, intltool, json-glib, rest, libsoup, gtk, gnome-online-accounts, gnome3 }:
let
pname = "libzapojit";
version = "0.0.3";
in
stdenv.mkDerivation rec {
name = "libzapojit-0.0.3";
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://gnome/sources/libzapojit/0.0/${name}.tar.xz";
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
sha256 = "0zn3s7ryjc3k1abj4k55dr2na844l451nrg9s6cvnnhh569zj99x";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib intltool json-glib rest libsoup gtk gnome-online-accounts ];
nativeBuildInputs = [ pkgconfig intltool ];
buildInputs = [ glib json-glib rest libsoup gtk gnome-online-accounts ];
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
attrPath = "gnome3.${pname}";
};
};
meta = with stdenv.lib; {
description = "GObject wrapper for the SkyDrive and Hotmail REST APIs";
license = licenses.lgpl21Plus;
maintainers = gnome3.maintainers;
platforms = platforms.linux;
};
}