2016-09-18 21:35:23 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
|
2018-02-25 03:23:58 +01:00
|
|
|
, librsvg, libcanberra-gtk3, clutter-gtk, intltool, itstool
|
2018-07-22 04:03:24 +02:00
|
|
|
, libxml2, libgee, libgnome-games-support }:
|
2016-09-18 21:35:23 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-25 21:07:20 +01:00
|
|
|
name = "gnome-nibbles-${version}";
|
2018-08-25 13:42:37 +02:00
|
|
|
version = "3.24.1";
|
2018-02-25 21:07:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/gnome-nibbles/${gnome3.versionBranch version}/${name}.tar.xz";
|
2018-08-25 13:42:37 +02:00
|
|
|
sha256 = "19g44cnrb191v50bdvy2qkrfhvyfsahd0kx9hz95x9gkjfn2nn35";
|
2018-02-25 21:07:20 +01:00
|
|
|
};
|
|
|
|
|
2018-08-25 13:42:37 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook intltool itstool libxml2 ];
|
2016-09-18 21:35:23 +02:00
|
|
|
buildInputs = [
|
2018-08-25 13:42:37 +02:00
|
|
|
gtk3 librsvg libcanberra-gtk3 clutter-gtk gnome3.defaultIconTheme
|
2018-07-22 04:03:24 +02:00
|
|
|
libgee libgnome-games-support
|
2016-09-18 21:35:23 +02:00
|
|
|
];
|
|
|
|
|
2018-08-25 13:42:37 +02:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = "gnome-nibbles";
|
|
|
|
attrPath = "gnome3.gnome-nibbles";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-18 21:35:23 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Guide a worm around a maze";
|
2018-08-25 13:42:37 +02:00
|
|
|
homepage = https://wiki.gnome.org/Apps/Nibbles;
|
2016-09-18 21:35:23 +02:00
|
|
|
license = licenses.gpl2;
|
2018-08-25 13:42:37 +02:00
|
|
|
maintainers = gnome3.maintainers;
|
2016-09-18 21:35:23 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|