-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question - Building php master branch from source? #35
Comments
That is a cool idea. I would accept PRs for that.
…On Sun, 11 Jul 2021, 09:29 Pol Dellaiera, ***@***.***> wrote:
Hello,
Do you think it would be possible to have a php version like: php-master
that would build from source the master branch of PHP ?
Thanks.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#35>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAFMEYYDCM7VTI33L4DW5T3TXFB6RANCNFSM5AFAWNLA>
.
|
I'm ok to contribute, but I would require a bit of help on this :) |
I didn't see an obvious spot to grab nightlies. Where do you grab the source from? Currently in nixpkgs we grab from the php website: |
How about grabbing from the official git repo? |
I think that is for released versions, it should not be a problem to use Git snapshots for testing purposes. And it should not be that hard to make the expression support both source types – just go through the official PHP docs on building (I assume there are some; would expect it to be similar to other autofoo set ups). |
Since the developments where they have changed their official developments to be hosted on GitHub I think this might have changed things as well. It would be nice to be able to easily provide development builds, so if we switched all the builds to grab from GitHub tags, we could do that easily. But then it's not the "official release tarball". The question is how much that matters? |
What's the battle plan then ? :) |
Someone needs to write it, should not be that hard. |
If you give me some directions, I might give it a try :) |
It should be just duplicating the php73 code in baseMaster = (prev.callPackage generic (_mkArgs {
version = "fooo";
sha256 = "0000000000000000000000000000000000000000000000000000000000000000";
})).overrideAttrs (attrs: {
src = /* … */;
}); And if that does not work, make php builder accept a |
#104 is an attempt at this. |
Hello,
Do you think it would be possible to have a php version like:
php-master
that would build from source themaster
branch of PHP ?Thanks.
The text was updated successfully, but these errors were encountered: