3
0
Fork 0
forked from mirrors/nixpkgs

gnome3.libgnome-games-support: add updateScript

This commit is contained in:
Jan Tojnar 2018-03-03 06:52:40 +01:00
parent 36c29a4910
commit 24cf244a18
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -1,20 +1,31 @@
{ stdenv, fetchurl, pkgconfig, glib, gtk3, libgee, intltool }:
{ stdenv, fetchurl, pkgconfig, glib, gtk3, libgee, intltool, gnome3 }:
stdenv.mkDerivation rec {
let
pname = "libgnome-games-support";
version = "1.2.3";
name = "libgnome-games-support-${version}";
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://gnome/sources/libgnome-games-support/1.2/${name}.tar.xz";
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
sha256 = "1vwad7kqy7yd6wqyr71nq0blh7m53r3lz6ya16dmh942kd0w48v1";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib gtk3 libgee intltool ];
nativeBuildInputs = [ pkgconfig intltool ];
buildInputs = [ glib gtk3 libgee ];
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
attrPath = "gnome3.libgames-support";
};
};
meta = with stdenv.lib; {
description = "Small library intended for internal use by GNOME Games, but it may be used by others";
homepage = https://github.com/GNOME/libgames-support;
license = licenses.gpl3;
homepage = https://wiki.gnome.org/Apps/Games;
license = licenses.lgpl3;
maintainers = gnome3.maintainers;
platforms = platforms.unix;
};
}