schlechtenburg/shell.nix

10 lines
244 B
Nix
Raw Normal View History

2024-10-09 12:56:50 +00:00
{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/293a28df6d7ff3dec1e61e37cc4ee6e6c0fb0847.tar.gz") {} }:
2022-03-14 16:02:58 +00:00
pkgs.mkShell {
buildInputs = [
pkgs.nodejs
pkgs.nodePackages.lerna
2022-12-11 17:49:06 +00:00
pkgs.python
pkgs.sqlite
2022-03-14 16:02:58 +00:00
];
}