zine: 0.15.0 -> 0.16.0

Diff: https://diff.rs/zine/0.15.0/0.16.0

Changelog: https://github.com/zineland/zine/releases/tag/v0.16.0

figsoda a1671199 f50ca417

+10 -10
+9 -7
pkgs/applications/misc/zine/default.nix
··· 4 , pkg-config 5 , openssl 6 , stdenv 7 - , CoreServices 8 - , Security 9 }: 10 11 rustPlatform.buildRustPackage rec { 12 pname = "zine"; 13 - version = "0.15.0"; 14 15 src = fetchCrate { 16 inherit pname version; 17 - sha256 = "sha256-81aCSIsgi7R4KmH1wvDYJJ1WX1vpT1n20XXSs+pHT54="; 18 }; 19 20 - cargoHash = "sha256-QRxh67WKRUukKGbKQHwWYdDSazN+2g/kf2A3BgePOUM="; 21 22 nativeBuildInputs = [ 23 pkg-config 24 ]; 25 26 - buildInputs = [ openssl ] 27 - ++ lib.optionals stdenv.isDarwin [ CoreServices Security ]; 28 29 meta = with lib; { 30 description = "A simple and opinionated tool to build your own magazine";
··· 4 , pkg-config 5 , openssl 6 , stdenv 7 + , darwin 8 }: 9 10 rustPlatform.buildRustPackage rec { 11 pname = "zine"; 12 + version = "0.16.0"; 13 14 src = fetchCrate { 15 inherit pname version; 16 + hash = "sha256-pUoMMgZQ+oDs9Yhc1rQuy9cUWiR800DlIe8wxQjnIis="; 17 }; 18 19 + cargoHash = "sha256-dXq8O0jVpr0xxvLTrsLJbiyyOMXXtEz7OMINqDEfG4U="; 20 21 nativeBuildInputs = [ 22 pkg-config 23 ]; 24 25 + buildInputs = [ 26 + openssl 27 + ] ++ lib.optionals stdenv.isDarwin [ 28 + darwin.apple_sdk.frameworks.CoreServices 29 + ]; 30 31 meta = with lib; { 32 description = "A simple and opinionated tool to build your own magazine";
+1 -3
pkgs/top-level/all-packages.nix
··· 36211 36212 zim = callPackage ../applications/office/zim { }; 36213 36214 - zine = callPackage ../applications/misc/zine { 36215 - inherit (darwin.apple_sdk.frameworks) CoreServices Security; 36216 - }; 36217 36218 zita-ajbridge = callPackage ../applications/audio/zita-ajbridge { }; 36219
··· 36211 36212 zim = callPackage ../applications/office/zim { }; 36213 36214 + zine = callPackage ../applications/misc/zine { }; 36215 36216 zita-ajbridge = callPackage ../applications/audio/zita-ajbridge { }; 36217