mirror of
https://framagit.org/enfance-libre/resistants
synced 2025-03-13 22:35:03 +00:00
5 lines
145 B
Nix
5 lines
145 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
pkgs.mkShell {
|
||
|
nativeBuildInputs = with pkgs; [ nodejs-18_x (yarn.override { nodejs = nodejs-18_x; }) ];
|
||
|
}
|