nixpkgs/pkgs/games/harmonist/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
1.0 KiB
Nix
Raw Normal View History

2022-11-21 11:34:23 +00:00
{lib, fetchurl, buildGoModule}:
2019-05-25 10:14:43 +00:00
2022-11-21 11:34:23 +00:00
buildGoModule rec {
2019-05-25 10:14:43 +00:00
pname = "harmonist";
2023-09-05 01:39:54 +00:00
version = "0.5.1";
2019-05-25 10:14:43 +00:00
src = fetchurl {
url = "https://download.tuxfamily.org/harmonist/releases/${pname}-${version}.tar.gz";
2023-09-05 01:39:54 +00:00
hash = "sha256-NkUrBvOOs6yctW4CVRpJNcdfdPvUJZp9HaWLS7eO4yE=";
2019-05-25 10:14:43 +00:00
};
2023-09-05 01:39:54 +00:00
vendorHash = "sha256-0DV32a2LYnfYzg/tqwear9uaaahNUIi0M8uWlXOQ5Ic=";
2019-05-25 10:14:43 +00:00
2022-11-21 11:34:23 +00:00
ldflags = [ "-s" "-w" ];
2019-05-25 10:14:43 +00:00
meta = with lib; {
2019-05-25 10:14:43 +00:00
description = "A stealth coffee-break roguelike game";
mainProgram = "harmonist";
2019-05-25 10:14:43 +00:00
longDescription = ''
Harmonist is a stealth coffee-break roguelike game. The game has a heavy
focus on tactical positioning, light and noise mechanisms, making use of
various terrain types and cones of view for monsters. Aiming for a
replayable streamlined experience, the game avoids complex inventory
management and character building, relying on items and player
adaptability for character progression.
'';
homepage = "https://harmonist.tuxfamily.org/";
license = licenses.isc;
2023-09-23 12:35:29 +00:00
maintainers = with maintainers; [ ];
2019-05-25 10:14:43 +00:00
};
}