2018-03-20 16:37:23 +00:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "todolist";
|
2018-10-20 10:32:30 +01:00
|
|
|
version = "v0.8.1";
|
2018-03-20 16:37:23 +00:00
|
|
|
|
|
|
|
goPackagePath = "github.com/gammons/todolist";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gammons";
|
|
|
|
repo = "todolist";
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2018-10-20 10:32:30 +01:00
|
|
|
sha256 = "0dazfymby5xm4482p9cyj23djmkz5q7g79cqm2d85mczvz7vks8p";
|
2018-03-20 16:37:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Simple GTD-style todo list for the command line";
|
|
|
|
homepage = "http://todolist.site";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ uvnikita ];
|
|
|
|
};
|
|
|
|
}
|