Files
Advent-of-code/shell.nix
T
2025-12-03 16:43:39 +01:00

18 lines
238 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.callPackage (
{
mkShell,
pkg-config,
openssl,
}:
mkShell {
strictDeps = true;
# host/target agnostic programs
depsBuildBuild = [
pkgs.nodejs_24
];
}
) { }