diff options
| -rw-r--r-- | pkgs/check-pr.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/check-pr.nix b/pkgs/check-pr.nix index fca30b1..b199669 100644 --- a/pkgs/check-pr.nix +++ b/pkgs/check-pr.nix @@ -1,4 +1,7 @@ -{writeShellApplication}: +{ + lib, + writeShellApplication, +}: writeShellApplication { name = "check-pr"; text = '' @@ -11,3 +14,4 @@ writeShellApplication { nix run "github:$1?ref=pull/$2/head''${3:+#$3}" ''; } +// {meta.platforms = lib.platforms.all;} |
