McMojave-cursors/flake.nix

30 lines
662 B
Nix
Raw Normal View History

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