From 348eebe418ab4ca76e925f614fcf57744ac74bee Mon Sep 17 00:00:00 2001 From: James Hillyerd Date: Sat, 15 Dec 2018 08:34:07 -0800 Subject: [PATCH] Add basic NixOS shell.nix file --- shell.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..f2b85b5 --- /dev/null +++ b/shell.nix @@ -0,0 +1,13 @@ +with import {}; +stdenv.mkDerivation rec { + name = "env"; + env = buildEnv { name = name; paths = buildInputs; }; + buildInputs = [ + elmPackages.elm + elmPackages.elm-format + go + golint + nodejs + swaks + ]; +}