about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorRobert Hensing <roberth@users.noreply.github.com>2023-06-06 19:41:27 +0200
committerGitHub <noreply@github.com>2023-06-06 19:41:27 +0200
commit253a839c4ebbd45d402bbc4318512a5f0d9d5251 (patch)
treea1992972ec85cb8c22f5f026faa05e54f4f05157 /pkgs/development/haskell-modules
parent989a2b93b79dd0553028e83be5f5db7221476d76 (diff)
parentb41324c0874bf40ec83dd65c43b8aa885dadc9c1 (diff)
downloadnixlib-253a839c4ebbd45d402bbc4318512a5f0d9d5251.tar
nixlib-253a839c4ebbd45d402bbc4318512a5f0d9d5251.tar.gz
nixlib-253a839c4ebbd45d402bbc4318512a5f0d9d5251.tar.bz2
nixlib-253a839c4ebbd45d402bbc4318512a5f0d9d5251.tar.lz
nixlib-253a839c4ebbd45d402bbc4318512a5f0d9d5251.tar.xz
nixlib-253a839c4ebbd45d402bbc4318512a5f0d9d5251.tar.zst
nixlib-253a839c4ebbd45d402bbc4318512a5f0d9d5251.zip
Merge pull request #236016 from qowoz/haskell-hcia
haskellPackages.hercules-ci-agent: add 'Do not chdir the build worker' patch
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 652c8ede6aab..d8e391dfd7b7 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1663,6 +1663,14 @@ self: super: {
   servant-swagger-ui-core = doJailbreak super.servant-swagger-ui-core;
 
   hercules-ci-agent = lib.pipe super.hercules-ci-agent [
+    (appendPatches [
+      # https://github.com/hercules-ci/hercules-ci-agent/pull/507
+      (fetchpatch {
+        url = "https://github.com/hercules-ci/hercules-ci-agent/commit/f5c39d0cbde36a056419cab8d69a67302eb8b0e4.patch";
+        sha256 = "sha256-J8N4+HUQ6vlJBCwCyxv8Fv5HSbtiim64Qh1n9CaRe1o=";
+        stripLen = 1;
+      })
+    ])
     (self.generateOptparseApplicativeCompletions [ "hercules-ci-agent" ])
   ];