about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/n2048/default.nix
blob: ec3a4e2bbeecfdd042af9f01213d4b7cc5f0cedc (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
{ lib, stdenv, fetchurl, ncurses }:

stdenv.mkDerivation rec {
  pname = "n2048";
  version = "0.1";
  src = fetchurl {
    url = "http://www.dettus.net/n2048/n2048_v${version}.tar.gz";
    sha256 = "184z2rr0rnj4p740qb4mzqr6kgd76ynb5gw9bj8hrfshcxdcg1kk";
  };
  buildInputs = [
    ncurses
  ];
  makeFlags = [
    "DESTDIR=$(out)"
  ];
  preInstall = ''
    mkdir -p "$out"/{share/man,bin}
  '';
  meta = with lib; {
    description = "Console implementation of 2048 game";
    license = licenses.bsd2;
    maintainers = with maintainers; [ raskin ];
    platforms = platforms.linux;
    homepage = "http://www.dettus.net/n2048/";
  };
}