mirror of
https://github.com/catppuccin/toolbox.git
synced 2026-01-09 05:00:44 +08:00
* refactor!: move `catwalk` to `catppuccin/catwalk` * build(nix): refactor flake --------- Co-authored-by: isabelroses <isabel@isabelroses.com>
27 lines
816 B
Nix
27 lines
816 B
Nix
{
|
|
description = "Catppuccin's development tools";
|
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
outputs =
|
|
{ nixpkgs, ... }:
|
|
let
|
|
forAllSystems =
|
|
function:
|
|
nixpkgs.lib.genAttrs nixpkgs.lib.systems.flakeExposed (
|
|
system: function nixpkgs.legacyPackages.${system}
|
|
);
|
|
in
|
|
{
|
|
packages = forAllSystems (_: {
|
|
whiskers = throw "This package has been moved to `github:catppuccin/whiskers`";
|
|
catwalk = throw "This package has been moved to `github:catppuccin/catwalk`";
|
|
});
|
|
|
|
overlays.default = _: _: {
|
|
catppuccin-catwalk = throw "This package has been moved to `github:catppuccin/catwalk`";
|
|
catppuccin-whiskers = throw "This package has been moved to `github:catppuccin/whiskers`";
|
|
};
|
|
};
|
|
}
|