Files
better-mreso/shell.nix
T
2026-07-04 16:40:34 +02:00

18 lines
206 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.callPackage (
{
mkShell,
pkg-config,
openssl,
}:
mkShell {
strictDeps = true;
buildInputs = with pkgs; [
nodejs_24
];
}
) { }