raycast: remove with lib; from meta

This commit is contained in:
DontEatOreo 2024-05-22 16:43:08 +03:00
parent da73f74323
commit 4ac7983d2c
No known key found for this signature in database
GPG Key ID: 0DB5361BEEE530AB

View File

@ -47,12 +47,12 @@ stdenvNoCC.mkDerivation (finalAttrs: {
'';
});
meta = with lib; {
meta = {
description = "Control your tools with a few keystrokes";
homepage = "https://raycast.app/";
license = with licenses; [ unfree ];
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
maintainers = with maintainers; [ lovesegfault stepbrobd donteatoreo ];
license = with lib.licenses; [ unfree ];
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
maintainers = with lib.maintainers; [ lovesegfault stepbrobd donteatoreo ];
platforms = [ "aarch64-darwin" "x86_64-darwin" ];
};
})