From a433adf48dbfa5017b3426f94df4c714fd7ba2da Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Wed, 8 Jun 2022 17:24:41 +0300 Subject: [PATCH] web: add shell.nix --- web/.gitignore | 1 + web/shell.nix | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 web/shell.nix diff --git a/web/.gitignore b/web/.gitignore index ef98814..f4dd52f 100644 --- a/web/.gitignore +++ b/web/.gitignore @@ -7,6 +7,7 @@ !/*json !/*.ts +!/*.nix !/(domain|repo|uikit|comp|views|translates)/*.ts !/styles/*.scss diff --git a/web/shell.nix b/web/shell.nix new file mode 100644 index 0000000..5700296 --- /dev/null +++ b/web/shell.nix @@ -0,0 +1,4 @@ +{ pkgs ? import {} }: + pkgs.mkShell { + nativeBuildInputs = [ pkgs.nodePackages.sass ]; +}