nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 rustPlatform,
4 fetchCrate,
5}:
6
7rustPlatform.buildRustPackage rec {
8 pname = "nix-btm";
9 version = "0.2.0";
10
11 src = fetchCrate {
12 inherit version;
13 pname = "nix-btm";
14 hash = "sha256-f8XFWlx+gwhF/OD8+tPcLGV/v0QnsDWOcqpY3Js+FAo=";
15 };
16
17 cargoHash = "sha256-zMQw3Q9t6JSMDt7xHMGTgAu9LW6MhG+Rrjpp5IEs/qQ=";
18
19 meta = {
20 description = "Rust tool to monitor Nix processes";
21 homepage = "https://github.com/DieracDelta/nix-btm";
22 license = lib.licenses.mit;
23 maintainers = with lib.maintainers; [ DieracDelta ];
24 };
25}