ci/eval: add rebuildsByPlatform to the comparison result (#363751)
[NixPkgs.git] / pkgs / by-name / tt / ttdl / package.nix
blob3cac311e475f11001f5ca41261124bb3b2b213ef
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "ttdl";
9   version = "4.7.0";
11   src = fetchFromGitHub {
12     owner = "VladimirMarkelov";
13     repo = "ttdl";
14     rev = "v${version}";
15     sha256 = "sha256-ugg6ZrrEAsfgeXBBKrU30orVkcWJV4MgZIVshAv8ys8=";
16   };
18   cargoHash = "sha256-jjkHnxK15WSlhgPpqpU7KNM2KcEi81TrcvIi9gq4YHU=";
20   meta = with lib; {
21     description = "CLI tool to manage todo lists in todo.txt format";
22     homepage = "https://github.com/VladimirMarkelov/ttdl";
23     changelog = "https://github.com/VladimirMarkelov/ttdl/blob/v${version}/changelog";
24     license = with licenses; [ mit ];
25     maintainers = with maintainers; [ _3JlOy-PYCCKUi ];
26     mainProgram = "ttdl";
27   };