Build issues with Nix
#1406
-
Hi! I wanted to build this package using Nix, and package it for NixOS. I started by writing a flake that would allow me to build it in a dev shell. This is what I've come up with:
However, the build is currently failing ( with lines like this: git clone https://github.com/plugdata-team/plugdata && cd plugdata && git checkout v0.8.3
mkdir build && cd build
cmake ..
cmake --build . -j 4
Here's the full error.log: error.log Any idea what's causing the build to fail? I'm quite excited to try this out, thank you! |
Beta Was this translation helpful? Give feedback.
Answered by
dromer
Jan 25, 2024
Replies: 1 comment 2 replies
-
Why are you not pulling the submodules? Add a But I'm pretty sure there already is a Nix package out there? 🤔 |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
rrrnld
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Why are you not pulling the submodules?
Add a
git submodule update --init --recursive
after your checkout.But I'm pretty sure there already is a Nix package out there? 🤔