Created
November 1, 2017 01:01
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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