Skip to content

Commit

Permalink
chore(nix): fix wrong build inputs (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkw authored Aug 12, 2023
1 parent ba471c8 commit 8a7f4e5
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
scope@{ pkgs ? import <nixpkgs> { } }:
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
Expand Down

0 comments on commit 8a7f4e5

Please sign in to comment.