nixpkgs/pkgs/games/n2048/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
639 B
Nix
Raw Normal View History

2022-01-16 19:20:36 +00:00
{ 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";
2014-11-23 19:50:40 +00:00
sha256 = "184z2rr0rnj4p740qb4mzqr6kgd76ynb5gw9bj8hrfshcxdcg1kk";
};
buildInputs = [
ncurses
];
makeFlags = [
"DESTDIR=$(out)"
2014-11-23 19:50:40 +00:00
];
preInstall = ''
mkdir -p "$out"/{share/man,bin}
'';
2022-01-16 19:20:36 +00:00
meta = with lib; {
description = "Console implementation of 2048 game";
2022-01-16 19:20:36 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
homepage = "http://www.dettus.net/n2048/";
2014-11-23 19:50:40 +00:00
};
}