dream2nix
dream2nix copied to clipboard
Simplified nix packaging for various programming language ecosystems [maintainer=@DavHau]
While packaging [`serve`](https://github.com/vercel/serve): ```command > nix flake show git+file:///tmp/my_project ├───devShell │ └───x86_64-linux: development environment 'nix-shell' ├───devShells │ └───x86_64-linux │ ├───default: development environment 'nix-shell' │ └───"tests/__fixtures__/config/deprecated": development environment 'nix-shell' ├───packages │...
Add an indexer for debian packages based on debians popularity contest. options: - outputFile - maxPackages - exclusions - inclusions Co-authored-by: Ctem
Pulled out `makeFlakeOutputs` and checks into a `let`. Then override the devShells to add to `buildInputs`. Thanks to @DavHau for helping me figuring this out.
I see that nothing handles cyclic deps. I took a stab at it because it's breaking for me, but I notice that the cyclic dep resolver isn't working properly. When...
This initializes first efforts to generate a debian builder.
Initialize an impure translator from debian binaries.
... which contains the cabal files of all hackage packages converted to json (by using [cabal2json](https://github.com/NorfairKing/cabal2json)). This can be based on https://github.com/commercialhaskell/all-cabal-hashes, which contains cabal files and hashes. Basically we...
Our templates in for new translators/builders `/src/templates` should actually be tested similar t how we test all our examples. This, of course requires the templates to actually do something, which...
Let's use this issue for tracking the progress on nodejs stuff. Tanslators implemented: - [x] yarn.lock translators - [x] package-lock.json translator - [x] package.json translator - [x] support yarn v2...
`dream2nix` should expose a combined devshell which should be the combination of all devshells outputted by the builders. This should be better than exiting and then re-entering a devshell just...