hors: fix darwin build

figsoda 5e94e24b e80237d8

+6 -2
+3 -1
pkgs/development/tools/hors/default.nix
··· 1 - { lib, rustPlatform, fetchFromGitHub }: 1 + { lib, rustPlatform, fetchFromGitHub, stdenv, Security }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "hors"; ··· 12 12 }; 13 13 14 14 cargoSha256 = "sha256-1PB/JvgfC6qABI+cIePqtsSlZXPqMGQIay9SCXJkV9o="; 15 + 16 + buildInputs = lib.optional stdenv.isDarwin Security; 15 17 16 18 # requires network access 17 19 doCheck = false;
+3 -1
pkgs/top-level/all-packages.nix
··· 24888 24888 gtk = gtk3; 24889 24889 }; 24890 24890 24891 - hors = callPackage ../development/tools/hors { }; 24891 + hors = callPackage ../development/tools/hors { 24892 + inherit (darwin.apple_sdk.frameworks) Security; 24893 + }; 24892 24894 24893 24895 hover = callPackage ../development/tools/hover { }; 24894 24896