Open SSL in IDX PROJECT

Hey! You can add it as a Nix package like below:

{ pkgs, ... }: {
  # Which nixpkgs channel to use.
  channel = "stable-23.11"; # or "unstable"
  # Use https://search.nixos.org/packages to find packages
  packages = [
    pkgs.openssl.dev
  ];

You can also take a look at this post as well:

3 Likes