forked from mirrors/nixpkgs
zine: add missing Darwin frameworks (#187659)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
f161a94d2a
commit
b3b1dd0e38
|
@ -4,6 +4,8 @@
|
|||
, rustPlatform
|
||||
, pkg-config
|
||||
, openssl
|
||||
, CoreServices
|
||||
, Security
|
||||
}:
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "zine";
|
||||
|
@ -23,9 +25,9 @@ rustPlatform.buildRustPackage rec {
|
|||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
buildInputs = [
|
||||
openssl
|
||||
];
|
||||
|
||||
buildInputs = [ openssl ]
|
||||
++ lib.optionals stdenv.isDarwin [ CoreServices Security ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A simple and opinionated tool to build your own magazine";
|
||||
|
|
|
@ -32025,7 +32025,9 @@ with pkgs;
|
|||
|
||||
zim = callPackage ../applications/office/zim { };
|
||||
|
||||
zine = callPackage ../applications/misc/zine { };
|
||||
zine = callPackage ../applications/misc/zine {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreServices Security;
|
||||
};
|
||||
|
||||
zita-ajbridge = callPackage ../applications/audio/zita-ajbridge { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue