From 87420857094ea515f439680b5334f456bea5d592 Mon Sep 17 00:00:00 2001 From: siduck76 Date: Thu, 29 Jul 2021 05:23:52 +0530 Subject: [PATCH] added shell.nix --- shell.nix | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000000000000000000000000000000000000..359a7f49c08722b070bac966a25f415dfde5167c --- /dev/null +++ b/shell.nix @@ -0,0 +1,5 @@ +{ pkgs ? import {} }: + +pkgs.mkShell { + nativeBuildInputs = with pkgs; [ pkgconfig xorg.libX11 xorg.libXft fontconfig harfbuzz ]; +}