nixpkgs/pkgs/applications/editors/kakoune/plugins/update-shell.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
197 B
Nix
Raw Normal View History

{ pkgs ? import ../../../../.. { } }:
with pkgs;
let
2022-12-05 21:48:16 +01:00
pyEnv = python3.withPackages (ps: [ ps.gitpython ]);
in
mkShell {
packages = [
bash
pyEnv
nix
nix-prefetch-scripts
];
}