Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / games / harmonist / default.nix
blobcbb556cbc9480bed049e4cfec244398f28865e65
1 {lib, fetchurl, buildGoModule}:
3 buildGoModule rec {
4   pname = "harmonist";
5   version = "0.5.1";
7   src = fetchurl {
8     url = "https://download.tuxfamily.org/harmonist/releases/${pname}-${version}.tar.gz";
9     hash = "sha256-NkUrBvOOs6yctW4CVRpJNcdfdPvUJZp9HaWLS7eO4yE=";
10   };
12   vendorHash = "sha256-0DV32a2LYnfYzg/tqwear9uaaahNUIi0M8uWlXOQ5Ic=";
14   ldflags = [ "-s" "-w" ];
16   meta = with lib; {
17     description = "A stealth coffee-break roguelike game";
18     longDescription = ''
19       Harmonist is a stealth coffee-break roguelike game. The game has a heavy
20       focus on tactical positioning, light and noise mechanisms, making use of
21       various terrain types and cones of view for monsters. Aiming for a
22       replayable streamlined experience, the game avoids complex inventory
23       management and character building, relying on items and player
24       adaptability for character progression.
25     '';
26     homepage = "https://harmonist.tuxfamily.org/";
27     license = licenses.isc;
28     maintainers = with maintainers; [ ];
29   };