mirror of
https://github.com/dap-ps/discover.git
synced 2026-09-01 14:51:09 +00:00
11 lines
179 B
Nix
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
|
|
];
|
|
}
|