Files
2025-10-16 14:12:33 +01:00

11 lines
97 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
with pkgs;
pkgs.mkShell {
buildInputs = [
deno
];
}