3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/gnome/games/four-in-a-row/default.nix

40 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, gnome, gtk3, wrapGAppsHook
, gettext, meson, gsound, librsvg, itstool, vala
2019-03-11 17:36:26 +00:00
, python3, ninja, desktop-file-utils }:
stdenv.mkDerivation rec {
pname = "four-in-a-row";
version = "3.38.1";
src = fetchurl {
2021-01-15 13:21:58 +00:00
url = "mirror://gnome/sources/four-in-a-row/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "10ji60bdfdzb6wk5dkwjc3yww7hqi3yjcx1k1z7x2521h2dpdli1";
};
2019-03-11 17:36:26 +00:00
nativeBuildInputs = [
2021-01-17 02:21:50 +00:00
pkg-config wrapGAppsHook gettext meson itstool vala
2019-03-11 17:36:26 +00:00
ninja python3 desktop-file-utils
];
buildInputs = [ gtk3 gsound librsvg gnome.adwaita-icon-theme ];
2018-03-14 00:41:23 +00:00
2019-03-11 17:36:26 +00:00
postPatch = ''
chmod +x build-aux/meson_post_install.py
patchShebangs build-aux/meson_post_install.py
'';
passthru = {
updateScript = gnome.updateScript {
2018-03-14 00:41:23 +00:00
packageName = "four-in-a-row";
attrPath = "gnome.four-in-a-row";
2018-03-14 00:41:23 +00:00
};
};
meta = with lib; {
homepage = "https://wiki.gnome.org/Apps/Four-in-a-row";
description = "Make lines of the same color to win";
maintainers = teams.gnome.members;
license = licenses.gpl2;
platforms = platforms.linux;
};
}