1
0

pkgs/git-checkout-github-pr: Add script to checkout GitHub PRs in repos

This commit is contained in:
2024-07-11 13:18:45 +02:00
parent e082168630
commit 9ddc82b507
4 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{ pkgs, ... }:
pkgs.writeShellApplication {
name = "git-checkout-github-pr";
text = builtins.readFile ./git-checkout-github-pr.sh;
runtimeInputs = with pkgs; [
git
];
}