]> gitweb.ps.run Git - sporegirl/commitdiff
add shell.nix
authorpatrick-scho <patrick.schoenberger@posteo.de>
Wed, 20 Aug 2025 11:58:29 +0000 (13:58 +0200)
committerpatrick-scho <patrick.schoenberger@posteo.de>
Wed, 20 Aug 2025 11:58:29 +0000 (13:58 +0200)
shell.nix [new file with mode: 0644]

diff --git a/shell.nix b/shell.nix
new file mode 100644 (file)
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
+    ];
+}