# SPDX-FileCopyrightText: 2026 Alyssa Ross # SPDX-License-Identifier: MIT import ../../lib/overlay-package.nix [ "cosmic-comp" ] ({ final, super }: super.cosmic-comp.overrideAttrs ({ patches ? [], ... }: { patches = patches ++ [ ./socket-path.patch ]; cargoDeps = final.rustPlatform.fetchCargoVendor { inherit (final.cosmic-comp) src patches; hash = "sha256-LQ6T0uJpRc3f5iMukut3f8GsMLt5Sd57ILY8+5b4Jdo="; }; }))