hyprlandPlugins.hyprspace 0-unstable-2024-06-17 -> 0.2.2 https://repology.org/project/hyprspace/versions attrpath: hyprlandPlugins.hyprspace Checking auto update branch... No auto update branch exists Old version 0-unstable-2024-06-17" not present in master derivation file with contents: { lib, callPackage, pkg-config, stdenv, hyprland, }: let mkHyprlandPlugin = hyprland: args@{ pluginName, ... }: stdenv.mkDerivation ( args // { pname = "${pluginName}"; nativeBuildInputs = [ pkg-config ] ++ args.nativeBuildInputs or [ ]; buildInputs = [ hyprland ] ++ hyprland.buildInputs ++ (args.buildInputs or [ ]); meta = args.meta // { description = args.meta.description or ""; longDescription = (args.meta.longDescription or "") + "\n\nPlugins can be installed via a plugin entry in the Hyprland NixOS or Home Manager options."; }; } ); plugins = lib.mergeAttrsList [ { hy3 = import ./hy3.nix; } { hycov = import ./hycov.nix; } { hypr-dynamic-cursors = import ./hypr-dynamic-cursors.nix; } { hyprfocus = import ./hyprfocus.nix; } { hyprgrass = import ./hyprgrass.nix; } { hyprscroller = import ./hyprscroller.nix; } { hyprspace = import ./hyprspace.nix; } (import ./hyprland-plugins.nix) ]; in (lib.mapAttrs (name: plugin: callPackage plugin { inherit mkHyprlandPlugin; }) plugins) // { inherit mkHyprlandPlugin; }