depot/third_party/nixpkgs/pkgs/games/nsnake/default.nix
Default email 87f9c27ba9 Project import generated by Copybara.
GitOrigin-RevId: fe2ecaf706a5907b5e54d979fbde4924d84b65fc
2023-04-12 14:48:02 +02:00

24 lines
575 B
Nix

{ stdenv, fetchFromGitHub, lib, ncurses }:
stdenv.mkDerivation rec {
pname = "nsnake";
version = "3.0.1";
src = fetchFromGitHub {
owner = "alexdantas";
repo = "nSnake";
rev = "v${version}";
sha256 = "sha256-MixwIhyymruruV8G8PjmR9EoZBpaDVBCKBccSFL0lS8=";
};
buildInputs = [ ncurses ];
makeFlags = [ "PREFIX=$(out)" ];
meta = {
description = "ncurses based snake game for the terminal";
homepage = "https://github.com/alexdantas/nSnake";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ clerie ];
};
}