diff options
| author | patrick-scho | 2025-08-20 13:58:29 +0200 |
|---|---|---|
| committer | patrick-scho | 2025-08-20 13:58:29 +0200 |
| commit | 93ab0cc40cbb95b3625a986427650dd609bd57dd (patch) | |
| tree | 6d623726583f55698f50a0468b070a1383537b79 /shell.nix | |
| parent | 6606fc3bb39c7a2363533939bdb0c6f41aa86922 (diff) | |
| download | sporegirl-93ab0cc40cbb95b3625a986427650dd609bd57dd.tar.gz sporegirl-93ab0cc40cbb95b3625a986427650dd609bd57dd.zip | |
add shell.nix
Diffstat (limited to 'shell.nix')
| -rw-r--r-- | shell.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..2d86b3a --- /dev/null +++ b/shell.nix @@ -0,0 +1,10 @@ +{ pkgs ? import <nixpkgs> {} }: +with pkgs; mkShell { + buildInputs = [ + alsa-lib + libGL + xorg.libX11 + xorg.libXi + xorg.libXcursor + ]; +} |
