Skip to content

Instantly share code, notes, and snippets.

@thefloweringash
Created January 9, 2019 00:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save thefloweringash/cc73f3a545fe0cdcfb16fb05dd4ba570 to your computer and use it in GitHub Desktop.
Save thefloweringash/cc73f3a545fe0cdcfb16fb05dd4ba570 to your computer and use it in GitHub Desktop.
Hydra on aarch64
fix-hydra = self: super: {
hydra =
let
notDarcs = pkgs.writeShellScriptBin "darcs" ''
echo "Stub darcs for unspported platform"
exit 1
'';
in (super.hydra.override {
darcs = notDarcs;
}).overrideAttrs (attrs: {
doCheck = false; # it tries to check darcs
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment