mirror of
https://github.com/aljazceru/mutiny-web.git
synced 2025-12-17 06:14:21 +01:00
29 lines
624 B
Nix
29 lines
624 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, flake-utils, ... }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
pkgs = import nixpkgs {
|
|
inherit system;
|
|
};
|
|
|
|
in
|
|
{
|
|
devShells.default = pkgs.mkShell {
|
|
buildInputs = [
|
|
pkgs.corepack_20
|
|
pkgs.nodejs_20
|
|
pkgs.python3
|
|
pkgs.just
|
|
];
|
|
shellHook = ''
|
|
corepack prepare pnpm@8.15.5 --activate
|
|
'';
|
|
};
|
|
});
|
|
}
|