about summary refs log tree commit diff stats
path: root/pkgs/by-name/gi/git-edit-index/package.nix
blob: d7bba6afe43b2231f0c80f1ff1ab797a5eeb15bb (plain) (blame)
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
  ];
}