Skip to content
Snippets Groups Projects
Select Git revision
  • 35ce5ac039d7379ea4098afa25da4dc7dee2ef27
  • develop default protected
  • dont-use-etc-hosts
  • sec
  • simplify-grafana
  • simple-docs-build
  • local-test-grid
  • no-morph-on-nodes
  • stuff
  • arion
10 results

twisted.nix

Blame
  • Forked from PrivateStorage / PrivateStorageio
    Source project has a limited visibility.
    twisted.nix 546 B
    { twisted }:
    twisted.overrideAttrs (old: {
      prePatch = old.patchPhase;
      patchPhase = null;
      # Add a patch which adds more logging to a namer resolver failure case.  The
      # NixOS system test harness might be setting up a weird semi-broken system
      # that provokes a weird behavior out of getaddrinfo() that Twisted doesn't
      # normally handle.  The logging can help with debugging this case.  We
      # should think about upstreaming something related to this.
      patches = (if old ? "patches" then old.patches else []) ++ [ ./twisted.patch ];
    })