about summary refs log tree commit diff stats
path: root/sys/nixpkgs/pkgs/comments
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sys/nixpkgs/pkgs/comments/comments.nix4
-rw-r--r--sys/nixpkgs/pkgs/comments/default.nix2
2 files changed, 3 insertions, 3 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]}
   '';
 }
diff --git a/sys/nixpkgs/pkgs/comments/default.nix b/sys/nixpkgs/pkgs/comments/default.nix
index c1132702..e2f479f1 100644
--- a/sys/nixpkgs/pkgs/comments/default.nix
+++ b/sys/nixpkgs/pkgs/comments/default.nix
@@ -10,7 +10,7 @@
           # dependencies
           
           less
-          fmt
+          coreutils
           ;
       };
     }