nixpkgs/pkgs/desktops/gnome-3/3.16/games/gnome-chess/default.nix
2015-08-13 12:47:12 +02:00

24 lines
733 B
Nix

{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
, intltool, itstool, librsvg, libxml2, hicolor_icon_theme }:
stdenv.mkDerivation rec {
name = "gnome-chess-${gnome3.version}.2";
src = fetchurl {
url = "mirror://gnome/sources/gnome-chess/${gnome3.version}/${name}.tar.xz";
sha256 = "0j1vvf1myki3bafsqv52q59qk1nhf1636nrb15fpfvm88p3b8wwg";
};
buildInputs = [
pkgconfig gtk3 wrapGAppsHook intltool itstool librsvg libxml2
hicolor_icon_theme
];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Chess;
description = "Play the classic two-player boardgame of chess";
maintainers = gnome3.maintainers;
license = licenses.gpl2;
platforms = platforms.linux;
};
}