From 60f4c9fd0e0e65cd2cbf82bfb08986b1964d0e89 Mon Sep 17 00:00:00 2001 From: Martin Puppe Date: Thu, 9 Jun 2022 10:35:23 +0200 Subject: [PATCH] Remove unused (and broken) file shell.nix --- shell.nix | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 shell.nix 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 ]; -}