nixpkgs-odroid-hc4/pkgs/applications/editors/vim/plugins/update-shell.nix
2025-12-20 09:59:59 +11:00

16 lines
265 B
Nix

{ pkgs ? import ../../../../.. { } }:
# Ideally, pkgs points to default.nix file of Nixpkgs official tree
with pkgs;
let
pyEnv = python3.withPackages (ps: [ ps.GitPython ]);
in
mkShell {
packages = [
bash
pyEnv
nix
nix-prefetch-scripts
];
}