13 lines
147 B
Nix
13 lines
147 B
Nix
|
|
with import <nixpkgs> { };
|
|
|
|
mkShell {
|
|
LANG="en_US.UTF-8";
|
|
nativeBuildInputs = [
|
|
emscripten
|
|
nodejs
|
|
valgrind
|
|
kcachegrind
|
|
];
|
|
}
|