lol
0
fork

Configure Feed

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

at 24.05-pre 23 lines 595 B view raw
1{ lib, rustPlatform, fetchFromGitea }: 2 3rustPlatform.buildRustPackage rec { 4 pname = "didu"; 5 version = "2.5.2"; 6 7 src = fetchFromGitea { 8 domain = "codeberg.org"; 9 owner = "annaaurora"; 10 repo = pname; 11 rev = "v${version}"; 12 sha256 = "szYWRN1NZbfpshipwMMJSWJw/NG4w7I+aqwtmqpT0R0="; 13 }; 14 15 cargoSha256 = "O1kkfrwv7xiOh3wCV/ce6cqpkMPRRzcXOFESYMAhiKA="; 16 17 meta = with lib; { 18 description = "Duration conversion between units"; 19 homepage = "https://codeberg.org/annaaurora/didu"; 20 license = licenses.lgpl3Only; 21 maintainers = with maintainers; [ annaaurora ]; 22 }; 23}