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