feat(cursors): add wii cursors (WIP)

This commit is contained in:
Mohammad Rafiq 2025-03-24 20:29:51 +08:00
parent 18379a72b7
commit f3c8595eb7
No known key found for this signature in database
21 changed files with 93 additions and 6 deletions

View file

@ -0,0 +1,19 @@
{
description = "Wii Cursor Theme";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
};
outputs =
{ self, nixpkgs, ... }:
let
system = "x86_64-linux"; # Adjust if needed
pkgs = import nixpkgs { inherit system; };
in
{
packages.${system}.wii-cursor = pkgs.callPackage ./default.nix { };
defaultPackage.${system} = self.packages.${system}.wii-cursor;
};
}