summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/games/four-in-a-row/default.nix
blob: 110e2e5c439303cec9d746e35845760d83c75fbc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
, gettext, itstool, libcanberra-gtk3, librsvg, libxml2 }:

stdenv.mkDerivation rec {
  name = "four-in-a-row-${version}";
  version = "3.28.0";

  src = fetchurl {
    url = "mirror://gnome/sources/four-in-a-row/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
    sha256 = "1iszaay2r92swb0q67lmip6r1w3hw2dwmlgnz9v2h6blgdyncs4k";
  };

  nativeBuildInputs = [ pkgconfig wrapGAppsHook gettext itstool libxml2 ];
  buildInputs = [ gtk3 libcanberra-gtk3 librsvg gnome3.defaultIconTheme ];

  passthru = {
    updateScript = gnome3.updateScript {
      packageName = "four-in-a-row";
      attrPath = "gnome3.four-in-a-row";
    };
  };

  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;
  };
}