nixpkgs/pkgs/by-name/ss/sssnake/package.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

29 lines
643 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
ncurses,
}:
stdenv.mkDerivation rec {
pname = "sssnake";
version = "0.3.2";
src = fetchFromGitHub {
owner = "angeljumbo";
repo = pname;
rev = "v${version}";
hash = "sha256-zkErOV6Az0kJdwyXzMCnVW1997zpAB79TBvf/41Igic=";
};
buildInputs = [ncurses];
makeFlags = [
"PREFIX=$(out)"
];
meta = with lib; {
description = "Cli snake game that plays itself";
mainProgram = "sssnake";
homepage = "https://github.com/angeljumbo/sssnake";
license = with licenses; [mit];
platforms = platforms.unix;
maintainers = with maintainers; [quantenzitrone];
};
}