mirror of
https://gitea.catppuccin.com/catppuccin/gitea
synced 2025-01-09 00:09:50 +00:00
16 lines
324 B
Nix
16 lines
324 B
Nix
{
|
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
|
outputs = {
|
|
self,
|
|
nixpkgs,
|
|
flake-utils,
|
|
}:
|
|
flake-utils.lib.eachDefaultSystem (
|
|
system: let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in {
|
|
devShells.default = pkgs.mkShell {buildInputs = [pkgs.deno];};
|
|
}
|
|
);
|
|
}
|