7 lines
108 B
Nix
7 lines
108 B
Nix
{ pkgs ? import <nixpkgs> {}}:
|
|
pkgs.mkShellNoCC {
|
|
packages = with pkgs; [
|
|
deno
|
|
];
|
|
}
|