From fd14f6fbf8206589d2a0ad8f0793845cb8faf1d7 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Thu, 26 Dec 2024 21:18:05 -0800 Subject: stuff --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index 7d8c456..5072164 100644 --- a/flake.nix +++ b/flake.nix @@ -8,7 +8,7 @@ outputs = { self, nixpkgs }: { packages.x86_64-linux = let pkgs = import nixpkgs { - system = "x86_64-linux"; # Adjust for your system, e.g., aarch64-darwin + system = "x86_64-linux"; }; in { @@ -18,7 +18,7 @@ src = ./.; - buildInputs = with pkgs; [ clang gnumake valgrind bear ]; + buildInputs = with pkgs; [ clang gnumake valgrind bear openssl ]; buildPhase = "make"; @@ -35,7 +35,7 @@ }; in pkgs.mkShell { - buildInputs = with pkgs; [ clang gnumake valgrind bear ]; + buildInputs = with pkgs; [ clang gnumake valgrind bear openssl ]; }; }; } -- cgit