From 281be32ec8827375824a048479ba877b6bd17373 Mon Sep 17 00:00:00 2001 From: urob <978080+urob@users.noreply.github.com> Date: Mon, 12 Aug 2024 10:25:32 -0400 Subject: [PATCH] List of unix dependencies Most of them are part of the single UNIX specs and should be available on every system. Uncomment any of these to instead use a project-specific version. --- flake.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 4a9994a..2a00fb0 100644 --- a/flake.nix +++ b/flake.nix @@ -28,9 +28,16 @@ zephyr.sdkFull pkgs.cmake pkgs.dtc - pkgs.just pkgs.ninja - pkgs.yq + # --- + # Uncomment these if you don't have system-wide versions: + # pkgs.gawk # awk + # pkgs.unixtools.column # column + # pkgs.coreutils # cp, cut, echo, mkdir, sort, tail, uniq etc. + # pkgs.gnugrep # grep + pkgs.just # just + # pkgs.gnused # sed + pkgs.yq # yq ]; }; });