1
0
mirror of https://github.com/kmein/niveum synced 2026-03-21 04:11:07 +01:00

modularize colorscheming and more

This commit is contained in:
Kierán Meinhardt
2019-04-19 15:02:05 +02:00
parent a763c63de4
commit 7d6dbc2809
37 changed files with 483 additions and 496 deletions

21
packages/todoist.nix Normal file
View File

@@ -0,0 +1,21 @@
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
name = "todoist-${version}";
version = "master";
src = fetchFromGitHub {
owner = "sachaos";
repo = "todoist";
rev = "8c17d7ebf9be78cce24414b5aa3d9c8f1098e506";
sha256 = "1r5kn5sx9g9rvx78cqfh19mqwf7370vk102x1n062whryk1j3562";
};
modSha256 = "09n6abyaqwz4zcdz8934rvpbxhp4v2nmm5v739kkcc98c3h93i64";
meta = with lib; {
description = "Todoist CLI Client";
homepage = "https://github.com/sachaos/todoist";
license = licenses.mit;
platforms = platforms.linux ++ platforms.darwin;
};
}