evoke-js/flake.nix

33 lines
574 B
Nix
Raw Normal View History

2024-08-17 18:23:26 +00:00
{
description = "evoke";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs = inputs@{ self, ... }:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
inputs.flake-parts.flakeModules.easyOverlay
];
systems = [ "x86_64-linux" ];
perSystem = {
system,
pkgs,
config,
...
}:
{
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
nodejs
nodePackages.serve
];
};
};
};
}