From 3e6ac2c754fec3ca4ac842fb940e7f4398a159cc Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 8 May 2019 16:49:00 +0200 Subject: [PATCH] taskell: Add package meta information --- pkgs/applications/misc/taskell/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/misc/taskell/default.nix b/pkgs/applications/misc/taskell/default.nix index 373839c1dd58..743d89de4add 100644 --- a/pkgs/applications/misc/taskell/default.nix +++ b/pkgs/applications/misc/taskell/default.nix @@ -57,5 +57,9 @@ in (haskellPackages.mkDerivation { tasty-hunit ]; - license = lib.licenses.bsd3; + description = "Command-line Kanban board/task manager with support for Trello boards and GitHub projects"; + homepage = "https://taskell.app"; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ matthiasbeyer ]; + platforms = with lib.platforms; unix ++ darwin; })