My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/games/n2048/default.nix

26 lines
639 B

{ 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/";
};
}