pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / games / boohu / default.nix
blob14aa6d43a5870101ac293ddbbd81d16ea46a2369
1 { lib, fetchurl, buildGoModule }:
3 buildGoModule rec {
4   pname = "boohu";
5   version = "0.14.0";
7   src = fetchurl {
8     url = "https://download.tuxfamily.org/boohu/downloads/boohu-${version}.tar.gz";
9     hash = "sha256-IB59C5/uuHP6LtKLypjpgHOo0MR9bFdCbudaRa+h7lI=";
10   };
12   vendorHash = "sha256-AVK4zE/Hs9SN8Qj2WYj/am2B0R74QKYoMNf3sRRjnU4=";
14   ldflags = [ "-s" "-w" ];
16   meta = with lib; {
17     description = "New coffee-break roguelike game";
18     mainProgram = "boohu";
19     longDescription = ''
20       Break Out Of Hareka's Underground (Boohu) is a roguelike game mainly
21       inspired from DCSS and its tavern, with some ideas from Brogue, but
22       aiming for very short games, almost no character building, and a
23       simplified inventory.
24     '';
25     homepage = "https://download.tuxfamily.org/boohu/index.html";
26     license = licenses.isc;
27     platforms = platforms.unix;
28     maintainers = [ ];
29   };