Files
org-parser/shell.nix
Florian Schroedl 20c183910d Watch
2022-05-18 17:57:46 +02:00

16 lines
303 B
Nix

{ pkgs, nimpkgs, buildInputs }:
pkgs.mkShell {
shellHook = ''
export NIMBLE_DIR="$PWD/.nimble"
export NIMBLE_BIN_DIR="$NIMBLE_DIR/bin"
export PATH="$NIMBLE_BIN_DIR:$PATH"
# Mutable nimble install
'';
buildInputs = with pkgs; buildInputs ++ [
nim
nimlsp
fswatch
];
}