Skip to content

Instantly share code, notes, and snippets.

@dhess
Created November 1, 2017 01:01
Show Gist options
  • Select an option

  • Save dhess/7210ca1d2818570e91bcbbc64d6164e9 to your computer and use it in GitHub Desktop.

Select an option

Save dhess/7210ca1d2818570e91bcbbc64d6164e9 to your computer and use it in GitHub Desktop.
Fix php for macOS in Nixpkgs. Put the contents of this file in ~/.config/nixpkgs/overlays/default.nix
self: super:
{
php = super.stdenv.lib.overrideDerivation super.php (oldAttrs: {
CXXFLAGS = "-std=c++11";
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment