toolbox/flake.nix
Hammy 2138196617
refactor!: move catwalk to catppuccin/catwalk (#245)
* refactor!: move `catwalk` to `catppuccin/catwalk`

* build(nix): refactor flake

---------

Co-authored-by: isabelroses <isabel@isabelroses.com>
2024-06-10 00:31:45 +01:00

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`";
};
};
}