summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2023-08-20 16:10:03 -0400
committerseth <[email protected]>2023-08-20 16:10:40 -0400
commit18c96ddec9476285c17534cc0edcb5270fda8b53 (patch)
tree1f49472781877e7e9ec22a7d8d8853f2d18d1976
parent15e43a3085505f4ea3c312c85cb2851df66d1889 (diff)
pkgs/check-pr: add meta.platforms
-rw-r--r--pkgs/check-pr.nix6
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;}