about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/2048-in-terminal/default.nix
blob: e7347c8fe880ee64589cd4417865bdb1b51d6c96 (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
25
26
27
28
29
30
31
{ lib, stdenv, fetchFromGitHub, ncurses, pkg-config }:

stdenv.mkDerivation rec {
  pname = "2048-in-terminal";
  version = "unstable-2022-06-13";

  src = fetchFromGitHub {
    owner = "alewmoose";
    repo = "2048-in-terminal";
    rev = "bf22f868a2e0e572f22153468585ec0226a4b8b2";
    sha256 = "sha256-Y5ZQYWOiG3QZZsr+d7olUDGAQ1LhRG9X2hBNQDx+Ztw=";
  };

  buildInputs = [ ncurses ];
  nativeBuildInputs = [ pkg-config ];

  enableParallelBuilding = true;

  preInstall = ''
    mkdir -p $out/bin
  '';
  installFlags = [ "PREFIX=$(out)" ];

  meta = with lib; {
    inherit (src.meta) homepage;
    description = "Animated console version of the 2048 game";
    mainProgram = "2048-in-terminal";
    license = licenses.mit;
    platforms = platforms.unix;
  };
}