Remove unused (and broken) file shell.nix

This commit is contained in:
Martin Puppe 2022-06-09 10:35:23 +02:00
parent abc49f6cf2
commit 60f4c9fd0e

View file

@ -1,14 +0,0 @@
{ pkgs ? import <nixpkgs> { } }:
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 ];
}