1
0
nixfiles/pkgs/git-pp/default.nix

10 lines
150 B
Nix

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