1 { lib, stdenv, fetchurl, ncurses }:
3 stdenv.mkDerivation rec {
7 url = "http://www.dettus.net/n2048/n2048_v${version}.tar.gz";
8 sha256 = "184z2rr0rnj4p740qb4mzqr6kgd76ynb5gw9bj8hrfshcxdcg1kk";
17 mkdir -p "$out"/{share/man,bin}
20 description = "Console implementation of 2048 game";
21 mainProgram = "n2048";
22 license = licenses.bsd2;
23 maintainers = with maintainers; [ raskin ];
24 platforms = platforms.linux;
25 homepage = "http://www.dettus.net/n2048/";