about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2022-12-20 01:35:37 +0100
committerRobert Hensing <robert@roberthensing.nl>2022-12-20 01:35:37 +0100
commitb81c610ae44efc47d935ae3d4dbc492edf6beeca (patch)
treee82f4085d7a054d15098e638a4fe4c4dbefe7cd6
parent50da22497914903fd0b01ff247fe59556bd5aefc (diff)
cachix: Make sure hercules-ci-agent builds
-rw-r--r--pkgs/top-level/all-packages.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index ba55fe01ec16b..5882a0e7719a7 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -18628,7 +18628,13 @@ with pkgs;
   c-blosc = callPackage ../development/libraries/c-blosc { };
 
   # justStaticExecutables is needed due to https://github.com/NixOS/nix/issues/2990
-  cachix = haskell.lib.compose.justStaticExecutables haskellPackages.cachix;
+  cachix = (haskell.lib.compose.justStaticExecutables haskellPackages.cachix).overrideAttrs(o: {
+    passthru = o.passthru or {} // {
+      tests = o.passthru.tests or {} // {
+        inherit hci;
+      };
+    };
+  });
 
   cubeb = callPackage ../development/libraries/audio/cubeb { };