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