mirror of
https://github.com/catppuccin/gitea.git
synced 2024-11-21 22:21:01 -05:00
15 lines
324 B
Nix
15 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];};
|
|
}
|
|
);
|
|
}
|