From 6768a26e5e72afb7e09a3410abc67b6e5606d398 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cain=C3=A3=20Costa?= Date: Mon, 24 Jul 2023 09:56:27 -0300 Subject: [PATCH] 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. --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index b26383a1..95c41469 100644 --- a/flake.nix +++ b/flake.nix @@ -24,7 +24,7 @@ version = "1.0.13-alpha"; buildInputs = with pkgs; [ openssl ] ++ osxDependencies; - nativeBuildInputs = with pkgs; [ pkg-config openssl ]; + nativeBuildInputs = with pkgs; [ pkg-config openssl.dev ]; src = pkgs.lib.cleanSourceWith { src = self; };