summary refs log tree commit diff
path: root/pkgs/games/gnushogi/default.nix
blob: e85674550308eba53c49fc284f6ddf0c3c76a126 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, zlib }:

stdenv.mkDerivation rec {
  name = "gnushogi-${version}";
  version = "1.4.2";
  buildInputs = [ zlib ];

  src = fetchurl {
    url = "mirror://gnu/gnushogi/${name}.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;
  };
}