c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
27 lines
731 B
Nix
27 lines
731 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "ttdl";
|
|
version = "4.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "VladimirMarkelov";
|
|
repo = "ttdl";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-5OYOF8SvjPn/gZf/utcpv1zVvVbB1HeB1mkMiJtBjOQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-MLypY7Dbr1/4hJ2UYmNOVp0nNWrq3DDTEidgkL0X0AU=";
|
|
|
|
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 ];
|
|
mainProgram = "ttdl";
|
|
};
|
|
}
|