From 65b6de7082d120ec72b48a0d8a72dc4a127fa478 Mon Sep 17 00:00:00 2001 From: Marc Scholten Date: Fri, 14 Jul 2023 20:29:29 +0200 Subject: [PATCH] build nodejs and imagemagick in our CI --- .github/patch-flakes.php | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/patch-flakes.php b/.github/patch-flakes.php index 1dabc9ee4..3c5b06049 100644 --- a/.github/patch-flakes.php +++ b/.github/patch-flakes.php @@ -2,5 +2,6 @@ $file_contents = file_get_contents('./flake.nix'); $new_content_with_ref = preg_replace('/(ihp\.url = \")(.+)(\")/', '$1github:digitallyinduced/ihp?ref=' . $argv[1] . '$3', $file_contents); $new_content_with_ref = str_replace("p.ihp", "p.ihp wreq mmark mmark-ext strip-ansi-escape stripe-signature stripe-concepts http-conduit haskell-to-elm aeson-casing tz tagsoup ihp-zip minio-hs hs-brotli wai-middleware-brotli fakedata jwt ihp-openai ihp-graphql", $new_content_with_ref); +$new_content_with_ref = str_replace("# Native dependencies, e.g. imagemagick", "nodejs imagemagick", $new_content_with_ref); file_put_contents('./flake.nix', $new_content_with_ref); ?>