flake: add meta to package derivation

This commit is contained in:
Bruno BELANYI 2021-06-12 21:44:09 +02:00
parent bad1c90d39
commit feb8639213
1 changed files with 11 additions and 0 deletions

View File

@ -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 ];
};
};
};
}