Files
org-parser/shell.nix
2022-02-09 11:34:16 +01:00

15 lines
291 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
];
}