nixpkgs/pkgs/by-name/ep/epilys-bb/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
671 B
Nix
Raw Permalink Normal View History

2023-06-03 10:23:18 -06:00
{ 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;
2023-11-26 18:17:53 -07:00
mainProgram = "bb";
2023-06-03 10:23:18 -06:00
};
}