1 { lib, stdenv, fetchFromGitHub, fetchpatch, ncurses, boost }:
3 stdenv.mkDerivation rec {
6 buildInputs = [ ncurses boost ];
8 src = fetchFromGitHub {
12 sha256 = "09kamxapm9jw9przpsgjfg33n9k94bccv65w95dakj0br33a75wn";
16 # Compatibility with new Boost
18 url = "https://github.com/fph/bastet/commit/0e03f8d4d6bc6949cf1c447e632ce0d1b98c4be1.patch";
19 sha256 = "1475hisbm44jirsrhdlnddppsyn83xmvcx09gfkm9drcix05alzj";
22 # Fix pending upstream inclusion for ncurses-6.3:
23 # https://github.com/fph/bastet/pull/21
25 name = "ncurses-6.3.patch";
26 url = "https://github.com/fph/bastet/commit/54a6d127351ea2c62f50efafe97c5b02e23e86a7.patch";
27 sha256 = "14v95b0m16m6ycd82i3wpp81kbmj6qz029b1m5483dkk6mwz98iy";
34 mkdir -p "$out"/share/man/man6
35 cp bastet.6 "$out"/share/man/man6
39 description = "Tetris clone with 'bastard' block-choosing AI";
40 mainProgram = "bastet";
41 homepage = "http://fph.altervista.org/prog/bastet.html";
42 license = licenses.gpl3;
43 maintainers = [ maintainers.dezgeg ];
44 platforms = platforms.linux;