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