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

Factor out HU

This commit is contained in:
Kierán Meinhardt
2019-01-08 18:22:54 +01:00
parent 4cc6335050
commit bad15e0c06
7 changed files with 107 additions and 44 deletions

View File

@@ -0,0 +1,13 @@
{ stdenv, go, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "todoist-${version}";
version = "0.13.0";
src = fetchFromGitHub {
owner = "sachaos";
repo = "todoist";
rev = "4db9c55408d408ce8385ac6e845b83f320c45c28";
sha256 = "1697mfq7ajr938ps387hj689k7s93274xlfyns1lr4gw1mfpxhzc";
};
goDeps = ./deps.nix;
goPackagePath = "github.com/sachaos/todoist";
}