summary refs log tree commit diff
path: root/pkgs/applications/editors/vim/plugins/update-shell.nix
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-02-16 11:55:43 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-02-24 20:26:07 -0300
commit3f19fc37a3557d31b242b220b52c7a1358572f57 (patch)
tree5b7f91299e0f8633512862c96755fb483349fc57 /pkgs/applications/editors/vim/plugins/update-shell.nix
parenta2122813921a74f1c6f04f113b07f89484376765 (diff)
downloadnixpkgs-3f19fc37a3557d31b242b220b52c7a1358572f57.tar
nixpkgs-3f19fc37a3557d31b242b220b52c7a1358572f57.tar.gz
nixpkgs-3f19fc37a3557d31b242b220b52c7a1358572f57.tar.bz2
nixpkgs-3f19fc37a3557d31b242b220b52c7a1358572f57.tar.lz
nixpkgs-3f19fc37a3557d31b242b220b52c7a1358572f57.tar.xz
nixpkgs-3f19fc37a3557d31b242b220b52c7a1358572f57.tar.zst
nixpkgs-3f19fc37a3557d31b242b220b52c7a1358572f57.zip
Move misc/vim-plugins to applications/editors/vim/plugins
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
+  ];
+}