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

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

25 lines
539 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-02-11 13:56:30 +00:00
buildGoModule rec {
pname = "todoist";
2023-04-30 02:33:06 +00:00
version = "0.20.0";
2019-02-11 13:56:30 +00:00
src = fetchFromGitHub {
owner = "sachaos";
repo = "todoist";
rev = "v${version}";
2023-04-30 02:33:06 +00:00
sha256 = "sha256-mdh+DOqlxcAqWIxEiKXmtvlsaaRCnRWEvrn56IFhBwk=";
2019-02-11 13:56:30 +00:00
};
2023-04-19 22:21:10 +00:00
vendorHash = "sha256-fWFFWFVnLtZivlqMRIi6TjvticiKlyXF2Bx9Munos8M=";
2019-02-11 13:56:30 +00:00
doCheck = false;
meta = {
homepage = "https://github.com/sachaos/todoist";
2019-02-11 13:56:30 +00:00
description = "Todoist CLI Client";
license = lib.licenses.mit;
2024-02-11 02:19:15 +00:00
mainProgram = "todoist";
2019-02-11 13:56:30 +00:00
};
}