mirror of
https://github.com/nix-community/nix-direnv.git
synced 2025-11-08 19:46:11 +01:00
10 lines
123 B
Nix
10 lines
123 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
with pkgs;
|
|
mkShell {
|
|
nativeBuildInputs = [
|
|
python3
|
|
shellcheck
|
|
direnv
|
|
];
|
|
}
|