From 317666fdda6655ac79859b639e35bcac5834536d Mon Sep 17 00:00:00 2001 From: Wesley Nelson Date: Fri, 4 Aug 2023 02:32:15 -0700 Subject: [PATCH] Add `x86_64-darwin` to flake outputs --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 7e33f18..5633c50 100644 --- a/flake.nix +++ b/flake.nix @@ -7,7 +7,7 @@ }; outputs = { self, nixpkgs, flake-utils, cargo2nix }: - flake-utils.lib.eachSystem [ "x86_64-linux" ] (system: + flake-utils.lib.eachSystem [ "x86_64-linux" "x86_64-darwin" ] (system: let pkgs = import nixpkgs { inherit system; @@ -23,7 +23,7 @@ mujmap = ((rustPkgs.workspace.mujmap {}).overrideAttrs(oa: { propagatedBuildInputs = oa.propagatedBuildInputs ++ [ pkgs.notmuch ]; })).bin; - + default = mujmap; }; });