summaryrefslogtreecommitdiff
path: root/pkgs/check-pr.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-10-07 10:10:55 -0400
committerseth <[email protected]>2023-10-07 10:18:46 -0400
commit519191cd9f31d1fe1c205535ddc4efe5f2e63793 (patch)
tree441a3b0cbf33a15ac052a1fd6a6894cf169f493b /pkgs/check-pr.nix
parent62a26a94a11774b7c14ea10cde0ca2294990fb9b (diff)
treewide!: remove flake-parts
while i love flake parts, i want to keep dependencies for this project as small as possible
Diffstat (limited to 'pkgs/check-pr.nix')
-rw-r--r--pkgs/check-pr.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/pkgs/check-pr.nix b/pkgs/check-pr.nix
deleted file mode 100644
index b199669..0000000
--- a/pkgs/check-pr.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- lib,
- writeShellApplication,
-}:
-writeShellApplication {
- name = "check-pr";
- text = ''
- _usage="
- usage: check-pr <owner/repo> <pr_id> [package]
- "
-
- [ "$#" -lt 2 ] && echo -n "$_usage" && exit 1
-
- nix run "github:$1?ref=pull/$2/head''${3:+#$3}"
- '';
-}
-// {meta.platforms = lib.platforms.all;}