mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
zellij: Fix building on Darwin platform
This commit is contained in:
parent
760736d67a
commit
72914e8861
@ -8,6 +8,8 @@
|
||||
, openssl
|
||||
, zellij
|
||||
, testVersion
|
||||
, DiskArbitration
|
||||
, Foundation
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
@ -32,6 +34,8 @@ rustPlatform.buildRustPackage rec {
|
||||
openssl
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
libiconv
|
||||
DiskArbitration
|
||||
Foundation
|
||||
];
|
||||
|
||||
preCheck = ''
|
||||
|
@ -11412,7 +11412,9 @@ with pkgs;
|
||||
|
||||
zdelta = callPackage ../tools/compression/zdelta { };
|
||||
|
||||
zellij = callPackage ../tools/misc/zellij { };
|
||||
zellij = callPackage ../tools/misc/zellij {
|
||||
inherit (darwin.apple_sdk.frameworks) DiskArbitration Foundation;
|
||||
};
|
||||
|
||||
zenith = callPackage ../tools/system/zenith {
|
||||
inherit (darwin.apple_sdk.frameworks) IOKit;
|
||||
|
Loading…
Reference in New Issue
Block a user