42 lines
989 B
Nix
42 lines
989 B
Nix
{
|
|
description = "Lifetracker";
|
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
outputs =
|
|
{ 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
|
|
nodejs
|
|
pnpm
|
|
postgresql
|
|
netlify-cli
|
|
]
|
|
++ optional stdenv.isLinux inotify-tools
|
|
++ optional stdenv.isDarwin terminal-notifier
|
|
++ optionals stdenv.isDarwin (
|
|
with darwin.apple_sdk.frameworks;
|
|
[
|
|
CoreFoundation
|
|
CoreServices
|
|
]
|
|
);
|
|
};
|
|
}
|
|
);
|
|
}
|