Skip to content

Commit e90b95e

Browse files
Add Nix dependencies
1 parent 263e72b commit e90b95e

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

shell.nix

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{ pkgs ? import <nixpkgs> {} }:
2+
pkgs.mkShell {
3+
nativeBuildInputs = with pkgs.buildPackages; [
4+
glfw
5+
go
6+
pkg-config
7+
xorg.libX11.dev
8+
xorg.libXcursor
9+
xorg.libXft
10+
xorg.libXi
11+
xorg.libXinerama
12+
xorg.libXrandr
13+
xorg.libXxf86vm
14+
];
15+
}

0 commit comments

Comments
 (0)