From ad39a34c1698812b814b5882cbe2a303510ae311 Mon Sep 17 00:00:00 2001 From: Benjamin Lee Date: Thu, 23 May 2024 20:41:23 -0700 Subject: [PATCH] add a dynamically-linked devshell This is broken on linux, but can be used by darwin users for development, since static/jemalloc/darwin is broken. --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index 667f8dc8..64f89623 100644 --- a/flake.nix +++ b/flake.nix @@ -198,5 +198,6 @@ (scopeHostStatic.overrideScope (final: prev: { main = prev.main.override { default_features = false; }; })); + devShells.dynamic = mkDevShell scopeHost; }); }