Unverified Commit 1945d198 authored by Azat Bahawi's avatar Azat Bahawi Committed by GitHub
Browse files

Merge pull request #209066 from 3JlOy-PYCCKUi/ttdl

ttdl: init at 3.5.0
parents b3fddf13 ea41744b
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -12668,6 +12668,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 { };