nixpkgs/pkgs/games/gshogi/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
859 B
Nix
Raw Normal View History

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