diff --git a/shell.nix b/shell.nix deleted file mode 100644 index 87bf638..0000000 --- a/shell.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ pkgs ? import { } }: -let - meta = import ./meta.nix; - src = (import ./helpers.nix).fetchFinancier { - inherit (pkgs) fetchgit; - inherit meta; - }; -in pkgs.mkShell { - shellHook = '' - export FINANCIER_SRC="${src}" - export FINANCIER_NODE_VERSION="${meta.nodeVersion}" - ''; - buildInputs = with pkgs; [ nodePackages.node2nix ]; -}