kdash: fix Darwin build

The AppKit dependency needs to be added as a buildInput.
This commit is contained in:
Theodore Ni 2022-05-12 00:00:42 -05:00
parent 3fb4aa63b4
commit 407b7c551c
No known key found for this signature in database
GPG key ID: 48B67583BDDD4474
2 changed files with 8 additions and 3 deletions

View file

@ -1,4 +1,5 @@
{ lib, stdenv { lib
, stdenv
, fetchFromGitHub , fetchFromGitHub
, rustPlatform , rustPlatform
, pkg-config , pkg-config
@ -6,6 +7,7 @@
, python3 , python3
, openssl , openssl
, xorg , xorg
, AppKit
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
@ -21,7 +23,8 @@ rustPlatform.buildRustPackage rec {
nativeBuildInputs = [ perl python3 pkg-config ]; nativeBuildInputs = [ perl python3 pkg-config ];
buildInputs = [ openssl xorg.xcbutil ]; buildInputs = [ openssl xorg.xcbutil ]
++ lib.optional stdenv.isDarwin AppKit;
cargoSha256 = "0nb554y8r7gvw7ls6gnrg98xxbws0mc6zdsc6ss3p2x9z8xwx204"; cargoSha256 = "0nb554y8r7gvw7ls6gnrg98xxbws0mc6zdsc6ss3p2x9z8xwx204";

View file

@ -7397,7 +7397,9 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) AppKit; inherit (darwin.apple_sdk.frameworks) AppKit;
}; };
kdash = callPackage ../development/tools/kdash { }; kdash = callPackage ../development/tools/kdash {
inherit (darwin.apple_sdk.frameworks) AppKit;
};
kdbplus = pkgsi686Linux.callPackage ../applications/misc/kdbplus { }; kdbplus = pkgsi686Linux.callPackage ../applications/misc/kdbplus { };