nix-community / dream2nix

Simplified nix packaging for various programming language ecosystems [maintainer=@DavHau]
https://dream2nix.dev
MIT License
982 stars 122 forks source link

Release v1 API #507

Open phaer opened 1 year ago

phaer commented 1 year ago

We believe it's about time to move from the old, experimental API (legacy) to the new one, sketched out in https://github.com/nix-community/dream2nix/pull/468 and (partially) implemented in the v1/ directory in the main branch .

The new API is based on drv-parts and does not require flake-enabled nix, but ships examples based on flake parts for those of us who like flakes.

This issue aims to provide an overview of the work we still need to do before deprecating the existing API and moving v1 to the top level of this repo. We've discussed this list in the last weekly call on 2023-04-18, you are welcome to provide feedback either here or in next weeks call (2024-04-25 14h Utc).

Documentation

Support Policies

Update Ecosystems

While there's a proof-of-concept wrapper which wraps the old API in terms of the new one (dream2nix-legacy module), this would still mean that we need to keep the old API inside our tree. We've decided to instead do a proper port of some subsystems to the new API. Due to the different completeness, community interest, and maintenance burden of each subsystem, we are probably going to drop some of them:

The following subsystems would be dropped. Please contact us here, on matrix or in a weekly call if you are interested into maintaining one of them - we'll happily provide mentoring and support.

Checklist

Testing

DavHau commented 1 year ago

Some more tasks that should be completed:

phaer commented 1 year ago

some quick notes copied from our chat.

aszenz commented 1 year ago

I would like to help in porting the php subsystem to the V1 api.

DavHau commented 1 year ago

@aszenz your help would be much appreciated. I opened an issue for the php migration: https://github.com/nix-community/dream2nix/issues/550

Feel free to post any questions you have on that issue.

yusdacra commented 1 year ago

If no one is porting the rust subsystem yet, can I pick it up? Some pointers would be helpful since I haven't looked at how all of the code is organized right now.

phaer commented 1 year ago

@yusdacra Great! As far as I know, there's no one working on the rust subsystem yet and contributions are more than welcome.

Some pointers would be helpful since I haven't looked at how all of the code is organized right now.

Any specific questions? I think David's recent presentation might currently be the best conceptual overview, if you haven't seen it yet. Otherwise always happy to help here, on matrix or in our weekly jitsi calls, Tuesday at 14 UTC.

DavHau commented 1 year ago

If no one is porting the rust subsystem yet, can I pick it up? Some pointers would be helpful since I haven't looked at how all of the code is organized right now.

That would be great. I actually started working on it a while ago. I'll rebase my branch once I'm home, push it and ping you.

DavHau commented 1 year ago

I pushed my work here: https://github.com/nix-community/dream2nix/pull/606

DrRuhe commented 12 months ago

I'd like to add a task that should be done as well regarding the cleanup of the API. Currently ./modules/flake-parts/all-modules.nix imports all modules and exports them again under dream2nix.modules.<kind>.<name>. This clutters the user-facing API. For example: ./modules/flake-parts/drv-parts-deprecated.nix simply adds a deprecation notice to anyone trying to use dream2nix.modules.drv-parts. But it is also itself exposed as dream2nix.modules.flake-parts.drv-parts-deprecated.