git-trim: fix darwin build

Add the required framework to dependencies.

+4 -3
+2 -1
pkgs/applications/version-management/git-trim/default.nix
··· 7 7 , libgit2 8 8 , IOKit 9 9 , CoreFoundation 10 + , Security 10 11 , fetchpatch 11 12 }: 12 13 ··· 36 37 nativeBuildInputs = [ pkg-config ]; 37 38 38 39 buildInputs = [ openssl libgit2 ] 39 - ++ lib.optionals stdenv.isDarwin [ IOKit CoreFoundation ]; 40 + ++ lib.optionals stdenv.isDarwin [ IOKit CoreFoundation Security ]; 40 41 41 42 postInstall = '' 42 43 install -Dm644 -t $out/share/man/man1/ docs/git-trim.1
+2 -2
pkgs/top-level/all-packages.nix
··· 1957 1957 1958 1958 git-town = callPackage ../applications/version-management/git-town { }; 1959 1959 1960 - git-trim = callPackage ../applications/version-management/git-trim { 1961 - inherit (darwin.apple_sdk_11_0.frameworks) IOKit CoreFoundation; 1960 + git-trim = darwin.apple_sdk_11_0.callPackage ../applications/version-management/git-trim { 1961 + inherit (darwin.apple_sdk_11_0.frameworks) IOKit CoreFoundation Security; 1962 1962 }; 1963 1963 1964 1964 git-up = callPackage ../applications/version-management/git-up {