mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
21 lines
553 B
Nix
21 lines
553 B
Nix
{ 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;
|
|
};
|
|
}
|