chore: reduce dependencies to build aiken

We don't need the whole of openssl to build, only the headers. It will
still be installed because we need it to run.
This commit is contained in:
Cainã Costa 2023-07-24 09:56:27 -03:00 committed by Lucas
parent ce03576a52
commit 6768a26e5e
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@
version = "1.0.13-alpha"; version = "1.0.13-alpha";
buildInputs = with pkgs; [ openssl ] ++ osxDependencies; buildInputs = with pkgs; [ openssl ] ++ osxDependencies;
nativeBuildInputs = with pkgs; [ pkg-config openssl ]; nativeBuildInputs = with pkgs; [ pkg-config openssl.dev ];
src = pkgs.lib.cleanSourceWith { src = self; }; src = pkgs.lib.cleanSourceWith { src = self; };