Merge pull request #37463 from uvNikita/add/todolist

todolist: init at 0.8
This commit is contained in:
lewo 2018-03-21 08:10:22 +01:00 committed by GitHub
commit e5b98c871e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 29 additions and 0 deletions

View file

@ -3675,6 +3675,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

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