depot/third_party/nixpkgs/pkgs/tools/system/epilys-bb/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

24 lines
671 B
Nix

{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "epilys-bb";
version = "unstable-2020-12-04";
src = fetchFromGitHub {
owner = "epilys";
repo = "bb";
rev = "c903d4c2975509299fd3d2600a0c4c2102f445d0";
hash = "sha256-KOXK+1arUWtu/QU7dwXhojIM0faMtwNN3AqVbofq1lY=";
};
cargoHash = "sha256-+aCMwKOg+3HDntG14gjJLec8XD51wuTyYyzLjuW6lbY=";
meta = with lib; {
description = "Clean, simple, and fast process viewer";
homepage = "https://nessuent.xyz/bb.html";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ cafkafk ];
platforms = platforms.linux;
mainProgram = "bb";
};
}