Fetch User Keys - simple tool for fetching SSH keys from various sources
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: add OpenSSL dependency on Linux

+2 -1
+2 -1
nix/fuk.nix
··· 10 10 libiconv, 11 11 scdoc, 12 12 pkg-config, 13 + openssl, 13 14 }: 14 15 rustPlatform.buildRustPackage { 15 16 pname = "fuk"; ··· 25 26 OUT=$out/man cargo xtask 26 27 ''; 27 28 28 - buildInputs = [pkg-config] ++ lib.lists.optionals stdenv.isDarwin (with darwin.apple_sdk; [ 29 + buildInputs = [pkg-config openssl] ++ lib.lists.optionals stdenv.isDarwin (with darwin.apple_sdk; [ 29 30 frameworks.Foundation 30 31 frameworks.CoreFoundation 31 32 frameworks.SystemConfiguration