29 lines
662 B
Nix
29 lines
662 B
Nix
{
|
|
description = "The McMojave xcursor theme packages for NixOS";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
systems.url = "github:nix-systems/default-linux";
|
|
};
|
|
|
|
outputs =
|
|
{
|
|
self,
|
|
nixpkgs,
|
|
systems,
|
|
...
|
|
}@inputs:
|
|
let
|
|
pkgs = nixpkgs;
|
|
eachSystem = pkgs.lib.genAttrs (import systems);
|
|
in
|
|
{
|
|
packages = eachSystem (system: {
|
|
default = self.packages.${system}.mcmojave-xcursor;
|
|
|
|
mcmojave-xcursor = inputs.nixpkgs.legacyPackages.${system}.callPackage ./nix {};
|
|
});
|
|
|
|
formatter = eachSystem (system: nixpkgs.${system}.nixpkgs-format);
|
|
};
|
|
}
|