todolist: init at 0.8

This commit is contained in:
Nikita Uvarov 2018-03-20 17:37:23 +01:00
parent fa3718777e
commit 300a28bb31
No known key found for this signature in database
GPG key ID: F7A5FB3A7C10EF96
3 changed files with 29 additions and 0 deletions

View file

@ -3670,6 +3670,11 @@
github = "utdemir";
name = "Utku Demir";
};
uvnikita = {
email = "uv.nikita@gmail.com";
github = "uvNikita";
name = "Nikita Uvarov";
};
uwap = {
email = "me@uwap.name";
github = "uwap";

View file

@ -0,0 +1,22 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "todolist-${version}";
version = "0.8";
goPackagePath = "github.com/gammons/todolist";
src = fetchFromGitHub {
owner = "gammons";
repo = "todolist";
rev = "${version}";
sha256 = "0agv9a44q81qr960b7m1jxk0pb8ahk6lvmzmijvw4v6mbip2720z";
};
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 ];
};
}

View file

@ -8204,6 +8204,8 @@ with pkgs;
texi2mdoc = callPackage ../tools/misc/texi2mdoc { };
todolist = callPackage ../applications/misc/todolist { };
travis = callPackage ../development/tools/misc/travis { };
tweak = callPackage ../applications/editors/tweak { };