dev-templates/node/flake.nix

31 lines
745 B
Nix
Raw Normal View History

2022-07-28 23:37:55 +02:00
{
description = "A Nix-flake-based Node.js development environment";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
inherit (pkgs) mkShell;
nodejs = pkgs.nodejs;
pnpm = pkgs.nodePackages.pnpm;
yarn = pkgs.yarn;
in {
devShells = {
2022-07-29 01:21:18 +02:00
default = mkShell {
2022-07-29 00:11:05 +02:00
buildInputs = [ nodejs pnpm (yarn.override { inherit nodejs; }) ];
2022-07-28 23:37:55 +02:00
shellHook = ''
echo "node `${nodejs}/bin/node --version`"
'';
};
};
2022-07-29 00:11:05 +02:00
});
2022-07-28 23:37:55 +02:00
}