nixpkgs/pkgs/desktops/gnome-3/games/iagno/default.nix

38 lines
1.1 KiB
Nix
Raw Normal View History

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