mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 08:39:08 +03:00
gnome3.four-in-a-row: init at 3.16.2
This commit is contained in:
parent
6440e9bbfd
commit
106837a449
@ -35,6 +35,7 @@ let
|
||||
|
||||
gamesPackages = with gnome3; [ swell-foop lightsoff iagno
|
||||
tali quadrapassel gnome-sudoku aisleriot five-or-more
|
||||
four-in-a-row
|
||||
];
|
||||
|
||||
inherit (pkgs) glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
|
||||
@ -300,6 +301,8 @@ let
|
||||
|
||||
five-or-more = callPackage ./games/five-or-more { };
|
||||
|
||||
four-in-a-row = callPackage ./games/four-in-a-row { };
|
||||
|
||||
gnome-sudoku = callPackage ./games/gnome-sudoku { };
|
||||
|
||||
iagno = callPackage ./games/iagno { };
|
||||
|
25
pkgs/desktops/gnome-3/3.16/games/four-in-a-row/default.nix
Normal file
25
pkgs/desktops/gnome-3/3.16/games/four-in-a-row/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
|
||||
, intltool, itstool, libcanberra_gtk3, librsvg, libxml2
|
||||
, hicolor_icon_theme }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "four-in-a-row-${gnome3.version}.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/four-in-a-row/${gnome3.version}/${name}.tar.xz";
|
||||
sha256 = "1bm5chsvpw0jg1xh9g2n1w5i0fvxs50aqkgmrla9cpawsvzfshmz";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig gtk3 wrapGAppsHook intltool itstool libcanberra_gtk3 librsvg
|
||||
libxml2 hicolor_icon_theme
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://wiki.gnome.org/Apps/Four-in-a-row;
|
||||
description = "Make lines of the same color to win";
|
||||
maintainers = gnome3.maintainers;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user