anup: fix build on darwin

+6 -2
+3 -1
pkgs/applications/misc/anup/default.nix
··· 1 - { lib, rustPlatform, fetchFromGitHub, sqlite, xdg-utils}: 1 + { lib, stdenv, rustPlatform, fetchFromGitHub, Security, sqlite, xdg-utils}: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "anup"; ··· 14 14 buildInputs = [ 15 15 sqlite 16 16 xdg-utils 17 + ] ++ lib.optionals stdenv.isDarwin [ 18 + Security 17 19 ]; 18 20 19 21 cargoSha256 = "sha256-1TA2HDHKA3twFtlAWaC2zcRzS8TJwcbBt1OTQ3hC3qM=";
+3 -1
pkgs/top-level/all-packages.nix
··· 23752 23752 23753 23753 antiword = callPackage ../applications/office/antiword {}; 23754 23754 23755 - anup = callPackage ../applications/misc/anup {}; 23755 + anup = callPackage ../applications/misc/anup { 23756 + inherit (darwin.apple_sdk.frameworks) Security; 23757 + }; 23756 23758 23757 23759 anytype = callPackage ../applications/misc/anytype { }; 23758 23760