nnn: add gnused dependency

Some runtime operations depend on `sed`. Requiring `gnused` explicitly
prevents the use of the insufficient builtin `sed` on Darwin.
This commit is contained in:
Samuel Tardieu
2024-10-20 14:47:59 +02:00
parent 49e859f1eb
commit 15e4a3a4b3
@@ -10,6 +10,7 @@
, which
, musl-fts
, pcre
, gnused
# options
, conf ? null
, withIcons ? false
@@ -60,7 +61,7 @@ stdenv.mkDerivation (finalAttrs: {
++ lib.optionals withPcre [ "O_PCRE=1" ]
++ extraMakeFlags;
binPath = lib.makeBinPath [ file which ];
binPath = lib.makeBinPath [ file which gnused ];
installTargets = [ "install" "install-desktop" ];