dream2nix
dream2nix copied to clipboard
Simplified nix packaging for various programming language ecosystems [maintainer=@DavHau]
I was working on an Electron project with a friend and was trying to get it set up on NixOS. When I tried to build the project using dream2nix with...
I was trying to use dream2nix in Copier, but it failed. Steps: 1. Clone https://github.com/copier-org/copier/commit/ba8d2452cd310c3efc48f3213ab9ef8d1a6f6b51 2. Apply [fail.patch](https://github.com/nix-community/dream2nix/files/10679190/fail.patch) 3. Run `nix develop --show-trace` Result: ```log error: cannot coerce null to...
We probably want to create the following modules under `v1/nix/modules/drv-parts`: - `php-composer-lock` (the translator populating `options.php-composer-lock.dreamLock`) - `php-granular` (the builder reading the `dreamLock` option and generating a package) And maybe...
I'm trying to package a small Rust project within NixOS and really like that just works (build and package) with minimal Nix code. Having tried dream2nix (Rust within NixOS in...
I'm trying to build node package using `flake-parts` and `dream2nix`: ```nix dream2nix.inputs.web_node = { source = ./web_node; projects.web_node = {name, ...}: { inherit name; # relPath = ""; subsystem =...
I am receiving this error when trying to build:  Repo in question is [here](https://github.com/xyven1/home-management). I can post trace if needed, but the error originates from [here](https://github.com/nix-community/dream2nix/blob/5a3e87301fedebbb116225d53d2ef2bdaf8f3318/src/subsystems/nodejs/builders/strict-builder/default.nix#L52C5-L57C79). Where is pkg...
#### EDIT: may have debugged this, see below Hey! I've hit simmingly simmilar error to #419 and #503, but these issue titles kinda exclude this instance. Also I wanted more...
How to test dream2nix v1 without (experimental) nix flakes? - according to https://github.com/nix-community/dream2nix/issues/538
Hi, I'm trying out dream2nix with little experience with Nix. I have a `requirements.txt` file and would like to make a flake out of it. However, when I build or...
Currently generate-dream-lock.py has statically defined pypi as source of packages metadata. It blocks resolveImpure from correctly reading it when packages are not coming from pypi (pypi-compatible source but different repo)....