1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

mousecape: remove with statements

This commit is contained in:
Philip Taron 2024-08-16 12:07:19 -07:00
parent aa20ccad78
commit faa935f472
No known key found for this signature in database

View file

@ -24,10 +24,10 @@ stdenvNoCC.mkDerivation (finalAttrs: {
meta = {
description = "Cursor manager for macOS built using private, nonintrusive CoreGraphics APIs";
homepage = "https://github.com/alexzielenski/Mousecape";
license = with lib; licenses.free;
maintainers = with lib; with maintainers; [ donteatoreo ];
platforms = with lib; platforms.darwin;
sourceProvenance = with lib; with sourceTypes; [ binaryNativeCode ];
license = lib.licenses.free;
maintainers = with lib.maintainers; [ donteatoreo ];
platforms = lib.platforms.darwin;
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
};
})