2019-05-22 12:03:39 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, gdk-pixbuf, librsvg, wrapGAppsHook
|
2019-09-02 17:45:35 +01:00
|
|
|
, itstool, gsound, libxml2
|
2019-03-11 18:40:53 +00:00
|
|
|
, meson, ninja, python3, vala, desktop-file-utils
|
|
|
|
}:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "iagno";
|
2020-06-09 22:32:12 +01:00
|
|
|
version = "3.36.3";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://gnome/sources/iagno/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-06-09 22:32:12 +01:00
|
|
|
sha256 = "0cid9fag8irlq0cywyqaj402vb60l8f66ld1zj7a023rg0khqnbb";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
|
|
|
|
2019-03-11 18:40:53 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
meson ninja python3 vala desktop-file-utils
|
|
|
|
pkgconfig wrapGAppsHook itstool libxml2
|
|
|
|
];
|
2019-09-02 17:45:35 +01:00
|
|
|
buildInputs = [ gtk3 gnome3.adwaita-icon-theme gdk-pixbuf librsvg gsound ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-09-05 01:50:08 +01:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = "iagno";
|
|
|
|
attrPath = "gnome3.iagno";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-18 20:35:23 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://wiki.gnome.org/Apps/Iagno";
|
2016-09-18 20:35:23 +01:00
|
|
|
description = "Computer version of the game Reversi, more popularly called Othello";
|
2020-04-01 13:40:51 +01:00
|
|
|
maintainers = teams.gnome.members;
|
2016-09-18 20:35:23 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|