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

Package todoist, add grive cron job, add asciidoctor

This commit is contained in:
Kierán Meinhardt
2019-01-13 16:10:29 +01:00
parent 2211d9ef3e
commit 4a8e41b772
5 changed files with 137 additions and 11 deletions

View File

@@ -1,13 +1,22 @@
{ stdenv, go, buildGoPackage, fetchFromGitHub }:
# This file was generated by https://github.com/kamilchm/go2nix v1.3.0
{ stdenv, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
buildGoPackage rec {
name = "todoist-${version}";
version = "0.13.0";
src = fetchFromGitHub {
owner = "sachaos";
repo = "todoist";
rev = "4db9c55408d408ce8385ac6e845b83f320c45c28";
name = "todoist-unstable-${version}";
version = "2018-11-09";
rev = "4db9c55408d408ce8385ac6e845b83f320c45c28";
goPackagePath = "github.com/sachaos/todoist";
src = fetchgit {
inherit rev;
url = "https://github.com/sachaos/todoist";
sha256 = "1697mfq7ajr938ps387hj689k7s93274xlfyns1lr4gw1mfpxhzc";
};
goDeps = ./deps.nix;
goPackagePath = "github.com/sachaos/todoist";
# TODO: add metadata https://nixos.org/nixpkgs/manual/#sec-standard-meta-attributes
meta = {
};
}