btop: init with process normalization patch

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Id2a35a495667cfd89b795acef5540e386a6a6964
This commit is contained in:
raf 2025-12-29 14:42:41 +03:00
commit b2db9c9f29
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
2 changed files with 115 additions and 0 deletions

15
pkgs/btop/package.nix Normal file
View file

@ -0,0 +1,15 @@
{
lib,
btop,
}:
btop.overrideAttrs {
patches = [
./patches/normalize_processes.patch
];
meta = {
description = "Monitor of resources, with a patch to normalize process names on Nix";
mainProgram = "btop";
maintainers = [lib.maintainers.NotAShelf];
};
}