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

{ lib, buildGoModule, fetchFromGitHub }:
2019-02-11 13:56:30 +00:00
buildGoModule rec {
pname = "todoist";
version = "0.18.0";
2019-02-11 13:56:30 +00:00
src = fetchFromGitHub {
owner = "sachaos";
repo = "todoist";
rev = "v${version}";
sha256 = "sha256-46wNacsK2kGHaq2MgcW4ELI2TIY+4leraGQwU4V7sVo=";
2019-02-11 13:56:30 +00:00
};
vendorSha256 = "sha256-ly+OcRo8tGeNX4FnqNVaqjPx/A1FALOnScxs04lIOiU=";
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
};
}