mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 07:00:43 +00:00
gnome3.libgnome-games-support: add updateScript
This commit is contained in:
parent
36c29a4910
commit
24cf244a18
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue