From 0c71fc9d1d49daa914c0f56f4f9201d40415d9b4 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Tue, 18 Aug 2020 12:00:17 +0100 Subject: Drop support for dir-locals.nix, , etc. In the spirit of Marie Kondo, I'm tidying up! TL;DR: - Prefer .envrc `use_nix` and delete all dir-locals.nix files - Remove ~all references to , , and prefer referencing each with briefcase.third_party.{pkgs,unstable,depot} - Delete nixBufferFromShell function since I was only using that in dir-locals.nix files --- boilerplate/elm/shell.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'boilerplate/elm/shell.nix') diff --git a/boilerplate/elm/shell.nix b/boilerplate/elm/shell.nix index 6f1c8ee23b30..00bb4b0b3edc 100644 --- a/boilerplate/elm/shell.nix +++ b/boilerplate/elm/shell.nix @@ -1,9 +1,10 @@ let - pkgs = import {}; + briefcase = import {}; + pkgs = briefcase.third_party.pkgs; in pkgs.mkShell { - buildInputs = with pkgs; [ - elmPackages.elm - elmPackages.elm-format - elmPackages.elm-live + buildInputs = with pkgs.elmPackages; [ + elm + elm-format + elm-live ]; } -- cgit 1.4.1