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}";
|
|
|
|
version = "3.24.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/gnome-nibbles/${gnome3.versionBranch version}/${name}.tar.xz";
|
|
|
|
sha256 = "0ddc1fe03483958dd5513d04f5919ade991902d12da18a4c2d3307f818a5cb4f";
|
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript { packageName = "gnome-nibbles"; attrPath = "gnome3.gnome-nibbles"; };
|
|
|
|
};
|
2016-09-18 21:35:23 +02:00
|
|
|
|
2017-09-14 21:24:37 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2016-09-18 21:35:23 +02:00
|
|
|
buildInputs = [
|
2017-09-14 21:24:37 +02:00
|
|
|
gtk3 wrapGAppsHook intltool itstool libxml2
|
2018-02-25 03:23:58 +01:00
|
|
|
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
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://wiki.gnome.org/Apps/Nibbles;
|
|
|
|
description = "Guide a worm around a maze";
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|