nixpkgs/pkgs/desktops/gnome-3/games/four-in-a-row/default.nix

40 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-16 18:21:50 -08:00
{ lib, stdenv, fetchurl, pkg-config, gnome3, gtk3, wrapGAppsHook
, gettext, meson, gsound, librsvg, itstool, vala
2019-03-11 10:36:26 -07:00
, python3, ninja, desktop-file-utils }:
stdenv.mkDerivation rec {
pname = "four-in-a-row";
version = "3.38.1";
src = fetchurl {
2021-01-15 05:21:58 -08:00
url = "mirror://gnome/sources/four-in-a-row/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "10ji60bdfdzb6wk5dkwjc3yww7hqi3yjcx1k1z7x2521h2dpdli1";
};
2019-03-11 10:36:26 -07:00
nativeBuildInputs = [
2021-01-16 18:21:50 -08:00
pkg-config wrapGAppsHook gettext meson itstool vala
2019-03-11 10:36:26 -07:00
ninja python3 desktop-file-utils
];
buildInputs = [ gtk3 gsound librsvg gnome3.adwaita-icon-theme ];
2018-03-13 17:41:23 -07:00
2019-03-11 10:36:26 -07:00
postPatch = ''
chmod +x build-aux/meson_post_install.py
patchShebangs build-aux/meson_post_install.py
'';
passthru = {
2018-03-13 17:41:23 -07:00
updateScript = gnome3.updateScript {
packageName = "four-in-a-row";
attrPath = "gnome3.four-in-a-row";
};
};
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;
};
}