objectivec-vscode/shell.nix
2025-03-22 01:43:05 +03:00

8 lines
140 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
gnumake
nodejs_22
];
}