aboutsummaryrefslogtreecommitdiffstats
path: root/flake.nix
diff options
context:
space:
mode:
authorPatrick Jackson <patrick@jackson.dev>2023-10-30 02:18:26 -0600
committerGitHub <noreply@github.com>2023-10-30 08:18:26 +0000
commit74c78ac2d7708088e275556051983bdf3670f1e3 (patch)
tree05209e118a715d17520c902baf619f2dc525bec1 /flake.nix
parentfeat(nix): Add a nixpkgs overlay (#1357) (diff)
downloadatuin-74c78ac2d7708088e275556051983bdf3670f1e3.zip
fix(nix): Add Appkit to the package build (#1358)
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index de77cbf1..ee5dcdd3 100644
--- a/flake.nix
+++ b/flake.nix
@@ -17,7 +17,7 @@
pkgs = nixpkgs.outputs.legacyPackages.${system};
in {
packages.atuin = pkgs.callPackage ./atuin.nix {
- inherit (pkgs.darwin.apple_sdk.frameworks) Security SystemConfiguration;
+ inherit (pkgs.darwin.apple_sdk.frameworks) Security SystemConfiguration AppKit;
};
packages.default = self.outputs.packages.${system}.atuin;