From 8b282119c95cd2b7363df4015475ae5dd3317e63 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Wed, 19 Apr 2023 19:07:01 +0200 Subject: [PATCH] Update gandalf shell --- shells/gandalf.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/shells/gandalf.nix b/shells/gandalf.nix index b436297a..24941610 100644 --- a/shells/gandalf.nix +++ b/shells/gandalf.nix @@ -7,7 +7,6 @@ category = "general commands"; help = "Install dependencies"; command = '' - yarn install bundle install bundle pristine ''; @@ -28,8 +27,6 @@ packages = with pkgs; [ imagemagick libyaml - nodejs - yarn ]; env = [ { name = "DATABASE_URL"; value = "mysql2://root:gandalf@127.0.0.1:3306/gandalf"; } @@ -45,6 +42,6 @@ }; language.ruby = { package = pkgs.ruby_3_0; - nativeDeps = [ pkgs.sqlite pkgs.libmysqlclient pkgs.zlib ]; + nativeDeps = [ pkgs.libmysqlclient pkgs.zlib ]; }; }