{ pkgs, ... }:

pkgs.writeShellApplication {
  name = "git-pp";
  text = builtins.readFile ./git-pp.sh;
  runtimeInputs = with pkgs; [
    git
  ];
}