summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorBossCode45 <human.cyborg42@gmail.com>2024-10-01 14:58:13 +1300
committerBossCode45 <human.cyborg42@gmail.com>2024-10-01 14:58:13 +1300
commit8b48a9cfc4b0795a62a515e2519e7194d1d57347 (patch)
treefc0d0d6df5bb0c10853cb3ba77bc48cc48a2d23d /shell.nix
parent915532bf8fbda9ba2a36e04fcd6acc67c6c68fa5 (diff)
parente162dff48c251e262f475de9261f0ecfa0f39dc4 (diff)
downloadYATwm-8b48a9cfc4b0795a62a515e2519e7194d1d57347.tar.gz
YATwm-8b48a9cfc4b0795a62a515e2519e7194d1d57347.zip
Merge branch 'main' into IPC
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..46c8894
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,13 @@
+{ pkgs ? import <nixpkgs> {} }:
+with pkgs;
+mkShell {
+ buildInputs = [
+ gcc
+ gnumake
+ xorg.libX11
+ xorg.libXrandr
+ libnotify
+ pkg-config
+ clang-tools
+ ];
+}