1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
{ writeShellApplication, # Dependencies coreutils, git, gnused, }: writeShellApplication { name = "git-edit-index"; text = builtins.readFile ./git-edit-index.sh; # `git-edit-index` starts neovim, wich might want to shell out from inheritPath = true; runtimeInputs = [ coreutils git gnused ]; }