ttdl: init at 3.6.3

This commit is contained in:
3JlOy_PYCCKUI 2023-01-04 20:14:32 +03:00
parent 327bd31f22
commit ea41744b5c
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "ttdl";
version = "3.6.3";
src = fetchFromGitHub {
owner = "VladimirMarkelov";
repo = "ttdl";
rev = "v${version}";
sha256 = "sha256-IR0cDXQHnMDI71Vg50atS98YorqAQKc95EF1+m9cxFY=";
};
cargoSha256 = "sha256-658mN3R3opjvqfnIDcbh11ZSOTDbpYnhCgGGx46Mrrc=";
meta = with lib; {
description = "A CLI tool to manage todo lists in todo.txt format";
homepage = "https://github.com/VladimirMarkelov/ttdl";
changelog = "https://github.com/VladimirMarkelov/ttdl/blob/v${version}/changelog";
license = with licenses; [ mit ];
maintainers = with maintainers; [ _3JlOy-PYCCKUi ];
};
}

View File

@ -12450,6 +12450,8 @@ with pkgs;
tthsum = callPackage ../applications/misc/tthsum { };
ttdl = callPackage ../applications/misc/ttdl { };
ttp = with python3.pkgs; toPythonApplication ttp;
trace-cmd = callPackage ../os-specific/linux/trace-cmd { };