pantheon/media/wii-cursors-xcursor/flake.nix
2025-03-24 20:29:51 +08:00

19 lines
430 B
Nix

{
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;
};
}