7 stdenv.mkDerivation rec {
10 src = fetchFromGitHub {
14 hash = "sha256-zkErOV6Az0kJdwyXzMCnVW1997zpAB79TBvf/41Igic=";
17 substituteInPlace makefile --replace '-lncursesw' '-lncursesw -D_XOPEN_SOURCE=500'
19 buildInputs = [ncurses];
24 description = "Cli snake game that plays itself";
25 mainProgram = "sssnake";
26 homepage = "https://github.com/angeljumbo/sssnake";
27 license = with licenses; [mit];
28 platforms = platforms.unix;
29 maintainers = with maintainers; [quantenzitrone];