soundsource: refactor meta

This commit is contained in:
DontEatOreo
2024-12-04 23:55:33 +02:00
parent 055d17f425
commit 4657c16089
+6 -5
View File
@@ -25,15 +25,16 @@ stdenvNoCC.mkDerivation (finalAttrs: {
runHook postInstall
'';
meta = with lib; {
meta = {
changelog = "https://rogueamoeba.com/support/releasenotes/?product=SoundSource";
description = "Sound controller for macOS";
homepage = "https://rogueamoeba.com/soundsource";
license = licenses.unfree;
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
maintainers = with maintainers; [
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [
emilytrau
donteatoreo
];
platforms = platforms.darwin;
platforms = lib.platforms.darwin;
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
})