github-backup: 0.48.0 -> 0.49.0 (#379003)
[NixPkgs.git] / pkgs / by-name / bo / boohu / package.nix
blobe6b7b1bbe010d6d90aa5a5647547a781639a3adb
2   lib,
3   fetchurl,
4   buildGoModule,
5 }:
7 buildGoModule rec {
8   pname = "boohu";
9   version = "0.14.0";
11   src = fetchurl {
12     url = "https://download.tuxfamily.org/boohu/downloads/boohu-${version}.tar.gz";
13     hash = "sha256-IB59C5/uuHP6LtKLypjpgHOo0MR9bFdCbudaRa+h7lI=";
14   };
16   vendorHash = "sha256-AVK4zE/Hs9SN8Qj2WYj/am2B0R74QKYoMNf3sRRjnU4=";
18   ldflags = [
19     "-s"
20     "-w"
21   ];
23   meta = with lib; {
24     description = "New coffee-break roguelike game";
25     mainProgram = "boohu";
26     longDescription = ''
27       Break Out Of Hareka's Underground (Boohu) is a roguelike game mainly
28       inspired from DCSS and its tavern, with some ideas from Brogue, but
29       aiming for very short games, almost no character building, and a
30       simplified inventory.
31     '';
32     homepage = "https://download.tuxfamily.org/boohu/index.html";
33     license = licenses.isc;
34     platforms = platforms.unix;
35     maintainers = [ ];
36   };