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