undmg: refactor meta

This commit is contained in:
DontEatOreo 2024-08-02 20:52:53 +03:00
parent 53774f1026
commit d7bf713fbe
No known key found for this signature in database
GPG Key ID: 0DB5361BEEE530AB

View File

@ -31,15 +31,15 @@ stdenv.mkDerivation rec {
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
homepage = "https://github.com/matthewbauer/undmg";
meta = {
description = "Extract a DMG file";
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [
homepage = "https://github.com/matthewbauer/undmg";
license = lib.licenses.gpl3;
mainProgram = "undmg";
maintainers = with lib.maintainers; [
matthewbauer
lnl7
];
mainProgram = "undmg";
platforms = lib.platforms.all;
};
}