Shell : Add game shell with tetris and minesweeper.

This commit is contained in:
Dmitry Voronin 2024-01-29 00:56:59 +03:00
parent 69e077e897
commit 42a8858294

View file

@ -0,0 +1,13 @@
with import <nixpkgs> {};
mkShell {
NIX_LD_LIBRARY_PATH = lib.makeLibraryPath [
stdenv.cc.cc
];
NIX_LD = lib.fileContents "${stdenv.cc}/nix-support/dynamic-linker";
buildInputs = [
freesweep
vitetris
];
}