1
0
mirror of https://github.com/dap-ps/discover.git synced 2025-01-31 03:26:13 +00:00

add shell.nix with correct build environment

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2022-05-24 12:09:31 +02:00
parent 97bfb18d67
commit d0b6e42645
No known key found for this signature in database
GPG Key ID: 09AA5403E54D9931

10
shell.nix Normal file
View File

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