Files
discover/shell.nix
2022-05-24 12:09:31 +02:00

11 lines
179 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "discover";
buildInputs = with pkgs; [
nodejs-12_x
(yarn.override { nodejs = nodejs-12_x; })
python2
];
}