dev-templates/node/flake.nix

32 lines
740 B
Nix
Raw Normal View History

2022-07-28 23:37:55 +02:00
{
description = "A Nix-flake-based Node.js development environment";
inputs = {
2022-07-31 12:57:49 +02:00
dev.url = "github:the-nix-way/dev-templates";
2022-07-28 23:37:55 +02:00
};
2022-07-31 12:57:49 +02:00
outputs = { self, dev }:
let
inherit (dev.lib) flake-utils nixpkgs;
in flake-utils.lib.eachDefaultSystem (system:
2022-07-28 23:37:55 +02:00
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
}