Files
2026-04-10 15:50:19 +02:00

20 lines
304 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.callPackage (
{
mkShell,
pkg-config,
openssl,
}:
mkShell {
strictDeps = true;
# host/target agnostic programs
# compilers & linkers & dependency finding programs
nativeBuildInputs = with pkgs; [
nodejs_22
];
}
) { }