diff options
Diffstat (limited to '')
-rw-r--r-- | sys/nixpkgs/pkgs/comments/comments.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nixpkgs/pkgs/comments/comments.nix b/sys/nixpkgs/pkgs/comments/comments.nix index a46f1ebe..e8a33bff 100644 --- a/sys/nixpkgs/pkgs/comments/comments.nix +++ b/sys/nixpkgs/pkgs/comments/comments.nix @@ -3,7 +3,7 @@ rustPlatform, makeWrapper, less, - fmt, + coreutils, }: rustPlatform.buildRustPackage { pname = "comments"; @@ -20,6 +20,6 @@ rustPlatform.buildRustPackage { postInstall = '' wrapProgram $out/bin/comments \ - --set PATH ${lib.makeBinPath [less fmt]} + --set PATH ${lib.makeBinPath [less coreutils]} ''; } |