From 63bd19127f66dda81007fcd0d8857e978740101f Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Mon, 30 Sep 2024 12:01:07 -0400 Subject: First commit --- shell.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 shell.nix (limited to 'shell.nix') diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..f2e5ae4 --- /dev/null +++ b/shell.nix @@ -0,0 +1,22 @@ +with import {}; +stdenv.mkDerivation { + name = "systemic-env"; + nativeBuildInputs = [ + rustc cargo + + pkg-config + cmake + + clang + stdenv.cc + stdenv.cc.libc stdenv.cc.libc_dev + glibc.static + ]; + + buildInputs = [ + glfw + wayland.dev + ]; + + LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib"; +} -- cgit v1.2.1