fix: Redo system -> pkgs

This commit is contained in:
Nathan McCarty 2023-06-08 21:31:56 -04:00
parent 58da347545
commit 95d4769c9f
Signed by: thatonelutenist
SSH Key Fingerprint: SHA256:hwQEcmak9E6sdU9bXc98RHw/Xd1AhpB5HZT7ZSVJkRM
1 changed files with 2 additions and 2 deletions

View File

@ -74,13 +74,13 @@
rustc = rust;
cargo = rust;
};
buildInputs = (sharedDeps system) ++ (with pkgs;
buildInputs = (sharedDeps pkgs) ++ (with pkgs;
[ openssl ] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security
pkgs.libiconv
darwin.apple_sdk.frameworks.SystemConfiguration
]);
nativeBuildInputs = (sharedNativeDeps system)
nativeBuildInputs = (sharedNativeDeps pkgs)
++ (with pkgs; [ pkg-config cmake ]);
devBase = with pkgs;
[