mirror of
https://github.com/danbulant/Mangades
synced 2026-06-19 06:11:38 +00:00
8 lines
113 B
Nix
8 lines
113 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
nodejs-slim
|
|
corepack
|
|
];
|
|
}
|