python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / boohu / default.nix
blob6b3c0e04f982a10e61c4a62e6fc2addeb53b7946
1 {lib, fetchurl, buildGoPackage}:
3 buildGoPackage rec {
5   pname = "boohu";
6   version = "0.13.0";
8   goPackagePath = "git.tuxfamily.org/boohu/boohu.git";
10   src = fetchurl {
11     url = "https://download.tuxfamily.org/boohu/downloads/${pname}-${version}.tar.gz";
12     sha256 = "0q89yv4klldjpli6y9xpyr6k8nsn7qa68gp90vb3dgxynn91sh68";
13   };
15   goDeps = ./deps.nix;
17   postInstall = "mv $out/bin/boohu.git $out/bin/boohu";
19   meta = with lib; {
20     description = "A new coffee-break roguelike game";
21     longDescription = ''
22       Break Out Of Hareka's Underground (Boohu) is a roguelike game mainly
23       inspired from DCSS and its tavern, with some ideas from Brogue, but
24       aiming for very short games, almost no character building, and a
25       simplified inventory.
26     '';
27     homepage = "https://download.tuxfamily.org/boohu/index.html";
28     license = licenses.isc;
29     platforms = platforms.unix;
30     maintainers = with maintainers; [];
31   };