summary refs log tree commit diff
path: root/pkgs/applications/editors/vim/plugins/update-shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/editors/vim/plugins/update-shell.nix')
-rw-r--r--pkgs/applications/editors/vim/plugins/update-shell.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/applications/editors/vim/plugins/update-shell.nix b/pkgs/applications/editors/vim/plugins/update-shell.nix
new file mode 100644
index 00000000000..e1b727c49e0
--- /dev/null
+++ b/pkgs/applications/editors/vim/plugins/update-shell.nix
@@ -0,0 +1,15 @@
+{ pkgs ? import ../../.. { } }:
+
+with pkgs;
+let
+  pyEnv = python3.withPackages (ps: [ ps.GitPython ]);
+in
+
+mkShell {
+  packages = [
+    bash
+    pyEnv
+    nix
+    nix-prefetch-scripts
+  ];
+}