dream2nix icon indicating copy to clipboard operation
dream2nix copied to clipboard

Simplified nix packaging for various programming language ecosystems [maintainer=@DavHau]

Results 217 dream2nix issues
Sort by recently updated
recently updated
newest added
trafficstars

``` { inputs = { dream2nix.url = "github:nix-community/dream2nix"; }; outputs = { self, dream2nix, } @ inp: (dream2nix.lib.makeFlakeOutputs { systems = ["x86_64-linux"]; config.projectRoot = ./.; source = ./.; projects =...

legacy-api
debian

I'm not sure if this is dream2nix related or something with my setup. I'm getting this error when I try to build my node project using strict-builder: ``` error: builder...

question

Hello! I found an error :D ## Error ``` > nix develop error: attribute 'metadata' missing at /nix/store/9ky8w9ynamwx3qxx0zqifsnw37jj3xk0-source/src/subsystems/rust/translators/cargo-lock/default.nix:104:7: 103| in 104| parsedLock.metadata."${key}"; | ^ 105| (use '--show-trace' to show detailed...

bug
rust

It appears that as of now, things are hard coded to to use `pypi.org`

python

rt repo: https://github.com/suyashtnt/personal-website ``` /home/tntman/projects/personal-website〉direnv reload 01/21/2023 05:05:34 direnv: loading ~/projects/personal-website/.envrc direnv: using flake warning: Git tree '/home/tntman/projects/personal-website' is dirty [0/1 built, 0.0 MiB DL] querying nix-shell-env on https://nixpkgs-wayland.cachix.orgdirenv: ([direnv...

bug
nodejs

following the [documentation page](https://nix-community.github.io/dream2nix/guides/getting-started-python.html), my flake file ```nix { inputs = { dream2nix.url = "github:nix-community/dream2nix"; }; outputs = inp: inp.dream2nix.lib.makeFlakeOutputs { systems = ["x86_64-linux"]; config.projectRoot = ./.; source = ./.;...

Currently, the flake-parts API has two "layers": - `dream2nix.inputs.`, with the options `source`, `settings`, `inject`, and overrides - `dream2nix.inputs..projects.`, with the options `name`, `version`, `relPath`, `subsystem`, `translator` I think these...

The maximum size quota of the repo is reached: https://github.com/DavHau/nix-pypi-fetcher/actions/runs/3556707373/jobs/5974260270#step:4:3180 Solve this by: - creating a new repo: nix-pypi-fetcher-2 - creating a commit on the old repo which throws an...

task

The default `nix build` for Racket builds a project. If the project source is broken (let's say there's a syntax error in the code), this fails. While this is perfectly...

In a project I want to package, it requires `pyaudio`. However, `pyaudio` depends on `portaudio`. Based on the flake template provided in the readme, this is my current flake: ```nix...

python