Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1# A map from a Julia package (typically a JLL package) to extra libraries 2# that they require from Nix. 3# The libraries should be strings evaluated in a "with pkgs" context. 4 5{ 6 # Qt5Base_jll 7 # Needs access to dbus or you get "Cannot find libdbus-1 in your system" 8 # Repro: build environment with ["Plots"] 9 # > using Plots; plot(cos, 0, 2pi) 10 "ea2cea3b-5b76-57ae-a6ef-0a8af62496e1" = [ "dbus.lib" ]; 11 12 # Qt6Base_jll 13 # Same reason as Qt5Base_jll 14 "c0090381-4147-56d7-9ebc-da0b1113ec56" = [ "dbus.lib" ]; 15}