35 lines
889 B
Nix
35 lines
889 B
Nix
{
|
|
description = "Lifetracker Monorepo";
|
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
outputs = { self, nixpkgs, flake-utils }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
inherit (pkgs.lib) optional optionals;
|
|
pkgs = import nixpkgs { inherit system; };
|
|
|
|
|
|
in
|
|
with pkgs;
|
|
{
|
|
devShell = pkgs.mkShell {
|
|
buildInputs = [
|
|
bashInteractive
|
|
glibcLocales
|
|
git
|
|
emacs-nox
|
|
nodejs
|
|
pnpm
|
|
postgresql
|
|
] ++ optional stdenv.isLinux inotify-tools
|
|
++ optional stdenv.isDarwin terminal-notifier
|
|
++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
CoreFoundation
|
|
CoreServices
|
|
]);
|
|
};
|
|
});
|
|
}
|