nixpkgs/pkgs/games/nsnake/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

26 lines
603 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";
mainProgram = "nsnake";
homepage = "https://github.com/alexdantas/nSnake";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ clerie ];
};
}