pashto-inflector/shell.nix

11 lines
208 B
Nix
Raw Normal View History

2023-11-29 07:18:47 +00:00
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-23.05";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
pkgs.mkShell {
packages = with pkgs; [
nodejs_20
];
}