gnome3.five-or-more: init at 3.16.1
This commit is contained in:
parent
2f62815520
commit
7dd58b645a
@ -34,7 +34,7 @@ let
|
|||||||
];
|
];
|
||||||
|
|
||||||
gamesPackages = with gnome3; [ swell-foop lightsoff iagno
|
gamesPackages = with gnome3; [ swell-foop lightsoff iagno
|
||||||
tali quadrapassel gnome-sudoku aisleriot
|
tali quadrapassel gnome-sudoku aisleriot five-or-more
|
||||||
];
|
];
|
||||||
|
|
||||||
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
|
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
|
||||||
@ -298,6 +298,8 @@ let
|
|||||||
|
|
||||||
aisleriot = callPackage ./games/aisleriot { };
|
aisleriot = callPackage ./games/aisleriot { };
|
||||||
|
|
||||||
|
five-or-more = callPackage ./games/five-or-more { };
|
||||||
|
|
||||||
gnome-sudoku = callPackage ./games/gnome-sudoku { };
|
gnome-sudoku = callPackage ./games/gnome-sudoku { };
|
||||||
|
|
||||||
iagno = callPackage ./games/iagno { };
|
iagno = callPackage ./games/iagno { };
|
||||||
|
24
pkgs/desktops/gnome-3/3.16/games/five-or-more/default.nix
Normal file
24
pkgs/desktops/gnome-3/3.16/games/five-or-more/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
|
||||||
|
, librsvg, intltool, itstool, libxml2, hicolor_icon_theme }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "five-or-more-${gnome3.version}.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://gnome/sources/five-or-more/${gnome3.version}/${name}.tar.xz";
|
||||||
|
sha256 = "018723w2q0fijvxs1kafrxg39f6ank6x51nfbf3mhn9q7jz9k2g3";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
pkgconfig gtk3 wrapGAppsHook librsvg intltool itstool libxml2
|
||||||
|
hicolor_icon_theme
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://wiki.gnome.org/Apps/Five_or_more;
|
||||||
|
description = "Remove colored balls from the board by forming lines";
|
||||||
|
maintainers = gnome3.maintainers;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user