evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / to / todoist / package.nix
blob0145644de14f39531426fb935e2ea64b566291a1
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "todoist";
5   version = "0.20.0";
7   src = fetchFromGitHub {
8     owner = "sachaos";
9     repo = "todoist";
10     rev = "v${version}";
11     sha256 = "sha256-mdh+DOqlxcAqWIxEiKXmtvlsaaRCnRWEvrn56IFhBwk=";
12   };
14   vendorHash = "sha256-fWFFWFVnLtZivlqMRIi6TjvticiKlyXF2Bx9Munos8M=";
16   doCheck = false;
18   meta = {
19     homepage = "https://github.com/sachaos/todoist";
20     description = "Todoist CLI Client";
21     license = lib.licenses.mit;
22     mainProgram = "todoist";
23   };