mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
26 lines
705 B
Nix
26 lines
705 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "ttdl";
|
|
version = "3.9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "VladimirMarkelov";
|
|
repo = "ttdl";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-qeMGJn3UNz9VQSn3J71DEzg0lOqO9DyPpwd21UQwXc0=";
|
|
};
|
|
|
|
cargoHash = "sha256-oIiTiJC+FmiudnJdhSjmKBg6EwXNpDshRZDjeftVR0o=";
|
|
|
|
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 ];
|
|
};
|
|
}
|