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

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

24 lines
510 B
Nix
Raw Normal View History

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