Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

shell.nix: Add some missing dependencies #2836

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,13 @@ let inherit (nixroot) stdenv pkgs lib
clang-tools
cmake
fetchurl
nix-gitignore
ffmpeg
gdb
python3;
libmodplug
mp4v2
nix-gitignore
python3
uklotzde marked this conversation as resolved.
Show resolved Hide resolved
wavpack;

git-clang-format = stdenv.mkDerivation {
name = "git-clang-format";
Expand Down Expand Up @@ -102,6 +106,10 @@ in stdenv.mkDerivation rec {
libusb1 libvorbis libebur128 pkgconfig portaudio portmidi protobuf qt5.full
rubberband sqlite taglib soundtouch vamp.vampSDK opusfile upower hidapi
git glib x11 libGLU lilv lame lv2 makeWrapper qt5.qtbase
ffmpeg
libmodplug
mp4v2
wavpack
] ++ allLv2Plugins;

meta = with nixroot.stdenv.lib; {
Expand Down