depot/third_party/nixpkgs/pkgs/games/gshogi/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

41 lines
885 B
Nix

{ lib
, fetchFromGitHub
, gobject-introspection
, gtk3
, python3
, wrapGAppsHook3
}:
python3.pkgs.buildPythonApplication rec {
pname = "gshogi";
version = "0.5.1";
src = fetchFromGitHub {
owner = "johncheetham";
repo = "gshogi";
rev = "v${version}";
hash = "sha256-EPOIYPSFAhilxuZeYfuZ4Cd29ReJs/E4KNF5/lyzbxs=";
};
doCheck = false; # no tests available
buildInputs = [
gtk3
];
nativeBuildInputs = [ wrapGAppsHook3 gobject-introspection ];
propagatedBuildInputs = with python3.pkgs; [
pygobject3
pycairo
];
meta = with lib; {
homepage = "http://johncheetham.com/projects/gshogi/";
description = "A graphical implementation of the Shogi board game, also known as Japanese Chess";
mainProgram = "gshogi";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = [ maintainers.ciil ];
};
}