hyprland-plugins/csgo-vulkan-fix/default.nix

20 lines
393 B
Nix

{
lib,
hyprland,
hyprlandPlugins,
}:
hyprlandPlugins.mkHyprlandPlugin hyprland {
pluginName = "csgo-vulkan-fix";
version = "0.1";
src = ./.;
inherit (hyprland) nativeBuildInputs;
meta = with lib; {
homepage = "https://github.com/hyprwm/hyprland-plugins";
description = "Hyprland CS:GO Vulkan fix";
license = licenses.bsd3;
platforms = platforms.linux;
};
}