about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2022-12-23 10:44:32 +0100
committerGitHub <noreply@github.com>2022-12-23 10:44:32 +0100
commit2c74fcd6c5fc14a61de158fb796243543f46b217 (patch)
tree55de86acb0c868fc51a2fd7b779cb99b621fac4b /pkgs/applications/misc
parentbf9dff8540abf4be324c100df0069f33d1a23144 (diff)
parent593fe790e7c699ce44be641877be8433d1adffbe (diff)
Merge pull request #207324 from wegank/stork-darwin
stork: unbreak on x86_64-darwin
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/stork/default.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/applications/misc/stork/default.nix b/pkgs/applications/misc/stork/default.nix
index 196e35042284d..6b23e2d492c51 100644
--- a/pkgs/applications/misc/stork/default.nix
+++ b/pkgs/applications/misc/stork/default.nix
@@ -4,7 +4,7 @@
 , openssl
 , pkg-config
 , stdenv
-, darwin
+, Security
 }:
 
 rustPlatform.buildRustPackage rec {
@@ -23,15 +23,12 @@ rustPlatform.buildRustPackage rec {
   nativeBuildInputs = [ pkg-config ];
 
   buildInputs = [ openssl ]
-    ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
+    ++ lib.optionals stdenv.isDarwin [ Security ];
 
   meta = with lib; {
     description = "Impossibly fast web search, made for static sites";
     homepage = "https://github.com/jameslittle230/stork";
     license = with licenses; [ asl20 ];
     maintainers = with maintainers; [ chuahou ];
-    # TODO: Remove once nixpkgs uses macOS SDK 10.14+ for x86_64-darwin
-    # Undefined symbols for architecture x86_64: "_SecTrustEvaluateWithError"
-    broken = stdenv.isDarwin && stdenv.isx86_64;
   };
 }