From 8a7f4e5ddfbaf911f6d74f5252b3a5d0961f1c28 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Fri, 11 Aug 2023 17:35:04 -0700 Subject: [PATCH] chore(nix): fix wrong build inputs (#227) --- shell.nix | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/shell.nix b/shell.nix index 1b4c2c21..8e2989a6 100644 --- a/shell.nix +++ b/shell.nix @@ -1,14 +1,9 @@ scope@{ pkgs ? import { } }: with pkgs; -let - mnemos = import ./default.nix { inherit pkgs; }; - - env = buildEnv { - name = "mnemos-env"; - paths = [ ] ++ lib.optional stdenv.isDarwin libiconv ++ mnemos.buildInputs - ++ mnemos.nativeBuildInputs; - }; +let mnemos = import ./default.nix { inherit pkgs; }; in mkShell { + buildInputs = mnemos.buildInputs; + nativeBuildInputs = mnemos.nativeBuildInputs; packages = [ # devtools just