nixpkgs/pkgs/games/gshogi/default.nix

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

48 lines
981 B
Nix
Raw Permalink Normal View History

2022-06-10 02:09:18 +00:00
{ lib
, fetchFromGitHub
, gobject-introspection
, gtk3
, python3
, wrapGAppsHook3
2022-06-10 02:09:18 +00:00
}:
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
];
nativeBuildInputs = [ wrapGAppsHook3 gobject-introspection ];
2018-06-12 10:11:40 +00:00
2022-06-10 02:09:18 +00:00
propagatedBuildInputs = with python3.pkgs; [
2018-06-12 10:11:40 +00:00
pygobject3
pycairo
];
2024-05-05 21:04:52 +00:00
dontWrapGApps = true;
preFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
meta = with lib; {
homepage = "http://johncheetham.com/projects/gshogi/";
2022-06-10 02:09:18 +00:00
description = "Graphical implementation of the Shogi board game, also known as Japanese Chess";
mainProgram = "gshogi";
2022-06-10 02:09:18 +00:00
license = licenses.gpl3Plus;
2018-06-12 10:11:40 +00:00
platforms = platforms.linux;
maintainers = [ maintainers.ciil ];
};
}