summary refs log blame commit diff
path: root/pkgs/games/gnushogi/default.nix
blob: 01c08fbf3dcbf7f9a5aee41b4259f79563ed32e3 (plain) (tree)
1
2
3
4
5
6
7
8
9


                           
                     



                         
                                                             




                                                                              
                                                        




                                       
{ stdenv, fetchurl, zlib }:

stdenv.mkDerivation rec {
  pname = "gnushogi";
  version = "1.4.2";
  buildInputs = [ zlib ];

  src = fetchurl {
    url = "mirror://gnu/gnushogi/${pname}-${version}.tar.gz";
    sha256 = "0a9bsl2nbnb138lq0h14jfc5xvz7hpb2bcsj4mjn6g1hcsl4ik0y";
  };

  meta = with stdenv.lib; {
    description = "GNU implementation of Shogi, also known as Japanese Chess";
    homepage = "https://www.gnu.org/software/gnushogi/";
    license = licenses.gpl3;
    maintainers = [ maintainers.ciil ];
    platforms = platforms.unix;
  };
}