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