10 lines
150 B
Nix
10 lines
150 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.writeShellApplication {
|
|
name = "git-pp";
|
|
text = builtins.readFile ./git-pp.sh;
|
|
runtimeInputs = with pkgs; [
|
|
git
|
|
];
|
|
}
|