lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.05-pre 22 lines 586 B view raw
1{ lib, fetchFromGitHub, rustPlatform }: 2 3rustPlatform.buildRustPackage rec { 4 pname = "dfrs"; 5 version = "0.0.7"; 6 7 src = fetchFromGitHub { 8 owner = "anthraxx"; 9 repo = pname; 10 rev = version; 11 sha256 = "01h00328kbw83q11yrsvcly69p0hql3kw49b4jx6gwkrdm8c2amk"; 12 }; 13 14 cargoSha256 = "1dgmn4g35yc7hwnxznkrpwnikn329nc0z8y7bxlcd308k1v83919"; 15 16 meta = with lib; { 17 description = "Display file system space usage using graphs and colors"; 18 homepage = "https://github.com/anthraxx/dfrs"; 19 license = licenses.mit; 20 maintainers = with maintainers; [ wamserma ]; 21 }; 22}