2018-10-10 02:45:38 +01:00
|
|
|
{stdenv, fetchurl, buildGoPackage}:
|
2018-10-03 01:23:23 +01:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
|
2019-05-25 11:57:43 +01:00
|
|
|
pname = "boohu";
|
2019-11-20 22:30:33 +00:00
|
|
|
version = "0.13.0";
|
2018-10-03 01:23:23 +01:00
|
|
|
|
|
|
|
goPackagePath = "git.tuxfamily.org/boohu/boohu.git";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-05-25 11:57:43 +01:00
|
|
|
url = "https://download.tuxfamily.org/boohu/downloads/${pname}-${version}.tar.gz";
|
2019-11-20 22:30:33 +00:00
|
|
|
sha256 = "0q89yv4klldjpli6y9xpyr6k8nsn7qa68gp90vb3dgxynn91sh68";
|
2018-10-03 01:23:23 +01:00
|
|
|
};
|
|
|
|
|
2019-05-25 11:57:43 +01:00
|
|
|
goDeps = ./deps.nix;
|
2018-10-03 01:23:23 +01:00
|
|
|
|
2020-04-28 02:50:57 +01:00
|
|
|
postInstall = "mv $out/bin/boohu.git $out/bin/boohu";
|
2018-10-03 01:23:23 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2019-05-25 11:57:43 +01:00
|
|
|
description = "A new coffee-break roguelike game";
|
2018-10-03 01:23:23 +01: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.
|
|
|
|
'';
|
2019-05-25 11:57:43 +01:00
|
|
|
homepage = "https://download.tuxfamily.org/boohu/index.html";
|
2018-10-03 01:23:23 +01:00
|
|
|
license = licenses.isc;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [freepotion];
|
|
|
|
};
|
|
|
|
}
|