mastoradio-fork/shell.nix

10 lines
128 B
Nix
Raw Permalink Normal View History

2021-11-05 20:35:37 +01:00
{ pkgs ? import <nixpkgs> { } }:
with pkgs; mkShell {
buildInputs = [
nodejs-14_x
python39
gnumake
gcc
];
}