nixpkgs/pkgs/games/boohu/default.nix

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

30 lines
902 B
Nix
Raw Normal View History

2023-09-29 01:42:39 +00:00
{ lib, fetchurl, buildGoModule }:
2018-10-03 00:23:23 +00:00
2023-09-29 01:42:39 +00:00
buildGoModule rec {
pname = "boohu";
2023-09-29 01:42:39 +00:00
version = "0.14.0";
2018-10-03 00:23:23 +00:00
src = fetchurl {
2023-09-29 01:42:39 +00:00
url = "https://download.tuxfamily.org/boohu/downloads/boohu-${version}.tar.gz";
hash = "sha256-IB59C5/uuHP6LtKLypjpgHOo0MR9bFdCbudaRa+h7lI=";
2018-10-03 00:23:23 +00:00
};
2023-09-29 01:42:39 +00:00
vendorHash = "sha256-AVK4zE/Hs9SN8Qj2WYj/am2B0R74QKYoMNf3sRRjnU4=";
2018-10-03 00:23:23 +00:00
2023-09-29 01:42:39 +00:00
ldflags = [ "-s" "-w" ];
2018-10-03 00:23:23 +00:00
meta = with lib; {
description = "A new coffee-break roguelike game";
2018-10-03 00:23:23 +00:00
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";
2018-10-03 00:23:23 +00:00
license = licenses.isc;
platforms = platforms.unix;
2023-09-29 01:42:39 +00:00
maintainers = with maintainers; [ ];
2018-10-03 00:23:23 +00:00
};
}