From 4a2dd04aed94f2eef63f2bd84ce24fe102c8967b Mon Sep 17 00:00:00 2001 From: Jens Nolte <jens@nightmarestudio.de> Date: Sun, 2 Feb 2020 00:00:31 +0100 Subject: [PATCH] Add shell.nix to load sript dependencies --- shell.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..c46699e --- /dev/null +++ b/shell.nix @@ -0,0 +1,9 @@ +{ pkgs ? import <nixpkgs> {} }: + +pkgs.mkShell { + buildInputs = with pkgs; [ + stack + zsh + jq + ]; +} -- GitLab