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

20 lines
393 B
Nix
Raw Normal View History

2023-04-27 00:58:01 +02:00
{
lib,
hyprland,
2024-03-07 10:29:46 +01:00
hyprlandPlugins,
2023-04-27 00:58:01 +02:00
}:
hyprlandPlugins.mkHyprlandPlugin hyprland {
2024-03-07 10:29:46 +01:00
pluginName = "csgo-vulkan-fix";
2023-04-27 00:58:01 +02:00
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;
};
}