nixpkgs/pkgs/applications/misc/ttdl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
729 B
Nix
Raw Normal View History

2023-01-04 20:14:32 +03:00
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "ttdl";
2024-08-26 03:26:48 +03:00
version = "4.4.1";
2023-01-04 20:14:32 +03:00
src = fetchFromGitHub {
owner = "VladimirMarkelov";
repo = "ttdl";
rev = "v${version}";
2024-08-26 03:26:48 +03:00
sha256 = "sha256-pcZ/8eM8JN+DKJKdVKJEl775QUXC4CFeMAaiBN0j+zo=";
2023-01-04 20:14:32 +03:00
};
2024-08-26 03:26:48 +03:00
cargoHash = "sha256-+caVo53gf7ZUMr0w/yoXfBaZ5MPe73s7vwoOdZVUcNY=";
2023-01-04 20:14:32 +03:00
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 ];
2024-02-11 05:19:15 +03:00
mainProgram = "ttdl";
2023-01-04 20:14:32 +03:00
};
}