2023-10-09 19:29:22 +00:00
|
|
|
{ lib, fetchurl, buildGoModule }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
buildGoModule rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "boohu";
|
2023-10-09 19:29:22 +00:00
|
|
|
version = "0.14.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-10-09 19:29:22 +00:00
|
|
|
url = "https://download.tuxfamily.org/boohu/downloads/boohu-${version}.tar.gz";
|
|
|
|
hash = "sha256-IB59C5/uuHP6LtKLypjpgHOo0MR9bFdCbudaRa+h7lI=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
vendorHash = "sha256-AVK4zE/Hs9SN8Qj2WYj/am2B0R74QKYoMNf3sRRjnU4=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
ldflags = [ "-s" "-w" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A new coffee-break roguelike game";
|
|
|
|
longDescription = ''
|
|
|
|
Break Out Of Hareka's Underground (Boohu) is a roguelike game mainly
|
|
|
|
inspired from DCSS and its tavern, with some ideas from Brogue, but
|
|
|
|
aiming for very short games, almost no character building, and a
|
|
|
|
simplified inventory.
|
|
|
|
'';
|
|
|
|
homepage = "https://download.tuxfamily.org/boohu/index.html";
|
|
|
|
license = licenses.isc;
|
|
|
|
platforms = platforms.unix;
|
2023-10-09 19:29:22 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|