2022-12-02 23:33:08 +00:00
|
|
|
{ lib, fetchFromGitHub, rustPlatform }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "dfrs";
|
|
|
|
version = "0.0.7";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "anthraxx";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "01h00328kbw83q11yrsvcly69p0hql3kw49b4jx6gwkrdm8c2amk";
|
|
|
|
};
|
|
|
|
|
2024-07-03 12:29:10 +00:00
|
|
|
cargoHash = "sha256-KaSBdpgIjMZoX8ejD5hNYtgZLb952t8th4f5Mh6x9bU=";
|
2022-12-02 23:33:08 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Display file system space usage using graphs and colors";
|
|
|
|
homepage = "https://github.com/anthraxx/dfrs";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ wamserma ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "dfrs";
|
2022-12-02 23:33:08 +00:00
|
|
|
};
|
|
|
|
}
|