nyazoom/shell.nix

13 lines
239 B
Nix
Raw Permalink Normal View History

2024-08-28 22:05:40 +00:00
{ pkgs ? import <nixpkgs> { }, additionalBuildInputs ? [ ] }:
with pkgs;
mkShell rec {
nativeBuildInputs = [
pkg-config
openssl
];
buildInputs = additionalBuildInputs;
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
}