gnome-nibbles: init at 3.16.1
This commit is contained in:
parent
ae8b67037e
commit
61557fbe5d
|
@ -36,7 +36,7 @@ let
|
|||
gamesPackages = with gnome3; [ swell-foop lightsoff iagno
|
||||
tali quadrapassel gnome-sudoku aisleriot five-or-more
|
||||
four-in-a-row gnome-chess gnome-klotski gnome-mahjongg
|
||||
gnome-mines
|
||||
gnome-mines gnome-nibbles
|
||||
];
|
||||
|
||||
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
|
||||
|
@ -312,6 +312,8 @@ let
|
|||
|
||||
gnome-mines = callPackage ./games/gnome-mines { };
|
||||
|
||||
gnome-nibbles = callPackage ./games/gnome-nibbles { };
|
||||
|
||||
gnome-sudoku = callPackage ./games/gnome-sudoku { };
|
||||
|
||||
iagno = callPackage ./games/iagno { };
|
||||
|
|
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
|
||||
, librsvg, libcanberra_gtk3, clutter_gtk, intltool, itstool
|
||||
, libxml2, hicolor_icon_theme }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gnome-nibbles-${gnome3.version}.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/gnome-nibbles/${gnome3.version}/${name}.tar.xz";
|
||||
sha256 = "1384hc7vx3i1jkmc1pw1cjh61jymq9441ci1k06vjz62r9as1nmx";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig gtk3 wrapGAppsHook intltool itstool libxml2
|
||||
librsvg libcanberra_gtk3 hicolor_icon_theme clutter_gtk
|
||||
];
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue