mirror of
https://github.com/Theaninova/Brick-Monorail.git
synced 2025-12-12 20:46:22 +00:00
24 lines
479 B
Nix
24 lines
479 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;};
|
|
packages =
|
|
(with pkgs; [
|
|
nodejs_18
|
|
nodePackages.pnpm
|
|
]);
|
|
in {
|
|
devShell = pkgs.mkShell {
|
|
buildInputs = packages;
|
|
};
|
|
});
|
|
}
|