about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/nsnake/default.nix
blob: aa3f568ec009b35ed6d815e29bdc070249551a7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchFromGitHub, lib, ncurses }:

stdenv.mkDerivation rec {
  pname = "nsnake";
  version = "3.0.1";

  src = fetchFromGitHub {
    owner = "alexdantas";
    repo = "nSnake";
    rev = "v${version}";
    sha256 = "sha256-MixwIhyymruruV8G8PjmR9EoZBpaDVBCKBccSFL0lS8=";
  };

  buildInputs = [ ncurses ];

  makeFlags = [ "PREFIX=$(out)" ];

  meta = {
    description = "ncurses based snake game for the terminal";
    homepage = "https://github.com/alexdantas/nSnake";
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ clerie ];
  };
}