28 lines
734 B
Nix
28 lines
734 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "ttdl";
|
|
version = "4.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "VladimirMarkelov";
|
|
repo = "ttdl";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-ugg6ZrrEAsfgeXBBKrU30orVkcWJV4MgZIVshAv8ys8=";
|
|
};
|
|
|
|
cargoHash = "sha256-jjkHnxK15WSlhgPpqpU7KNM2KcEi81TrcvIi9gq4YHU=";
|
|
|
|
meta = with lib; {
|
|
description = "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 ];
|
|
mainProgram = "ttdl";
|
|
};
|
|
}
|