From feb8639213329e0756304bb4b838c6b37895350e Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sat, 12 Jun 2021 21:44:09 +0200 Subject: [PATCH] flake: add meta to package derivation --- flake.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/flake.nix b/flake.nix index 5388bdc..9a3dbba 100644 --- a/flake.nix +++ b/flake.nix @@ -105,6 +105,17 @@ patchShebangs $out/bin/${pname} wrapProgram $out/bin/${pname} --prefix PATH : "${wrapperPath}" ''; + + meta = with pkgs.lib; { + description = '' + A very simple bash script that can be used to send a message to + a Matrix room + ''; + homepage = "https://gitea.belanyi.fr/ambroisie/${pname}"; + license = licenses.mit; + platforms = platforms.unix; + maintainers = with maintainers; [ ambroisie ]; + }; }; }; }