Commit 15e4a3a4 authored by Samuel Tardieu's avatar Samuel Tardieu
Browse files

nnn: add gnused dependency

Some runtime operations depend on `sed`. Requiring `gnused` explicitly
prevents the use of the insufficient builtin `sed` on Darwin.
parent 49e859f1
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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" ];