aboutsummaryrefslogtreecommitdiffstats
path: root/sys/nixpkgs
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2024-01-28 21:23:29 +0100
committerSoispha <soispha@vhack.eu>2024-01-28 21:23:29 +0100
commit1e4bf48235b7c227d874a5868afe3bb6fcc1589f (patch)
tree1e9ea762aade199a24c9b9b10c9ae12baf69fcc3 /sys/nixpkgs
parentfeat(hm/pkgs/specific/neorg): Add draft of rewrite in nu (diff)
downloadnixos-config-1e4bf48235b7c227d874a5868afe3bb6fcc1589f.zip
fix(sys/nixpkgs/pkgs/comments): Wrap with correct `fmt`
Diffstat (limited to 'sys/nixpkgs')
-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
;
};
}