nixpkgs/pkgs/games/boohu/default.nix

33 lines
946 B
Nix
Raw Normal View History

{lib, fetchurl, buildGoPackage}:
2018-10-03 00:23:23 +00:00
buildGoPackage rec {
pname = "boohu";
2019-11-20 22:30:33 +00:00
version = "0.13.0";
2018-10-03 00:23:23 +00:00
goPackagePath = "git.tuxfamily.org/boohu/boohu.git";
src = fetchurl {
url = "https://download.tuxfamily.org/boohu/downloads/${pname}-${version}.tar.gz";
2019-11-20 22:30:33 +00:00
sha256 = "0q89yv4klldjpli6y9xpyr6k8nsn7qa68gp90vb3dgxynn91sh68";
2018-10-03 00:23:23 +00:00
};
goDeps = ./deps.nix;
2018-10-03 00:23:23 +00:00
postInstall = "mv $out/bin/boohu.git $out/bin/boohu";
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;
2021-03-10 00:26:42 +00:00
maintainers = with maintainers; [];
2018-10-03 00:23:23 +00:00
};
}