From 23ad00f2641fc53002b490ec83a269487034eaa2 Mon Sep 17 00:00:00 2001 From: teutat3s Date: Sun, 27 Feb 2022 18:24:08 +0100 Subject: [PATCH] wik: add meta section --- overlays/python-wik.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/overlays/python-wik.nix b/overlays/python-wik.nix index e53f705b..fcfac08f 100644 --- a/overlays/python-wik.nix +++ b/overlays/python-wik.nix @@ -21,5 +21,12 @@ final: prev: with prev.python39Packages; { beautifulsoup4 requests ]; + + meta = with prev.lib; { + description = "query wikipedia articles from your terminal"; + homepage = "https://github.com/yashsinghcodes/wik"; + license = licenses.mit; + maintainers = with maintainers; [ teutat3s ]; + }; }; }