2021-01-16 18:21:50 -08:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, gnome3, gtk3, wrapGAppsHook
|
2019-09-02 09:44:25 -07:00
|
|
|
, gettext, meson, gsound, librsvg, itstool, vala
|
2019-03-11 10:36:26 -07:00
|
|
|
, python3, ninja, desktop-file-utils }:
|
2016-09-18 12:35:23 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "four-in-a-row";
|
2020-10-11 09:38:35 -07:00
|
|
|
version = "3.38.1";
|
2018-02-25 12:07:20 -08:00
|
|
|
|
|
|
|
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";
|
2020-10-11 09:38:35 -07:00
|
|
|
sha256 = "10ji60bdfdzb6wk5dkwjc3yww7hqi3yjcx1k1z7x2521h2dpdli1";
|
2018-02-25 12:07:20 -08:00
|
|
|
};
|
|
|
|
|
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
|
|
|
|
];
|
2019-09-02 09:44:25 -07:00
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2018-02-25 12:07:20 -08:00
|
|
|
passthru = {
|
2018-03-13 17:41:23 -07:00
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = "four-in-a-row";
|
|
|
|
attrPath = "gnome3.four-in-a-row";
|
|
|
|
};
|
2018-02-25 12:07:20 -08:00
|
|
|
};
|
2016-09-18 12:35:23 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://wiki.gnome.org/Apps/Four-in-a-row";
|
2016-09-18 12:35:23 -07:00
|
|
|
description = "Make lines of the same color to win";
|
2020-04-01 05:40:51 -07:00
|
|
|
maintainers = teams.gnome.members;
|
2016-09-18 12:35:23 -07:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|