2024-06-28 14:29:12 +02:00
|
|
|
{
|
2024-10-24 21:26:52 +02:00
|
|
|
description = "A plugin to make your hyprland cursor more realistic, also adds shake to find";
|
2024-06-28 14:29:12 +02:00
|
|
|
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
2024-10-24 21:26:52 +02:00
|
|
|
hyprland.url = "github:hyprwm/Hyprland";
|
2024-06-28 14:29:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = {
|
|
|
|
self,
|
|
|
|
nixpkgs,
|
|
|
|
...
|
|
|
|
} @ inputs: let
|
2024-10-24 21:26:52 +02:00
|
|
|
systems = ["x86_64-linux"];
|
|
|
|
forAllSystems = nixpkgs.lib.genAttrs systems;
|
|
|
|
packagesForEach = nixpkgs.legacyPackages;
|
2024-06-28 14:29:12 +02:00
|
|
|
in {
|
2024-10-24 21:26:52 +02:00
|
|
|
packages = forAllSystems (system: rec {
|
|
|
|
default = hypr-dynamic-cursors;
|
|
|
|
hypr-dynamic-cursors = packagesForEach.${system}.callPackage ./nix/package.nix {
|
|
|
|
inherit inputs;
|
|
|
|
pkgs = packagesForEach.${system};
|
|
|
|
};
|
2024-06-28 14:29:12 +02:00
|
|
|
});
|
|
|
|
};
|
|
|
|
}
|