Files
conlang.phundrak.com/shell.nix
T

7 lines
97 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
2024-06-23 13:14:42 +02:00
nativeBuildInputs = [
pkgs.nodejs_20
];
}