Shell : Add game shell with tetris and minesweeper.
This commit is contained in:
parent
69e077e897
commit
42a8858294
13
.config/linux/shell/Game.nix
Normal file
13
.config/linux/shell/Game.nix
Normal 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
|
||||
];
|
||||
}
|
Reference in a new issue