mastoradio-fork/shell.nix
2021-11-05 20:35:37 +01:00

10 lines
128 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs; mkShell {
buildInputs = [
nodejs-14_x
python39
gnumake
gcc
];
}