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
546 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-02-11 13:56:30 +00:00
buildGoModule rec {
pname = "todoist";
2023-04-19 22:21:10 +00:00
version = "0.19.0";
2019-02-11 13:56:30 +00:00
src = fetchFromGitHub {
owner = "sachaos";
repo = "todoist";
rev = "v${version}";
2023-04-19 22:21:10 +00:00
sha256 = "sha256-i8q9L8x9LNodL3ilFK5kiq744yclRfsexxS7E0i9JSo=";
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;
platforms = lib.platforms.unix;
2019-02-11 13:56:30 +00:00
};
}