Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
16 lines
517 B
Nix
16 lines
517 B
Nix
# A map from a Julia package (typically a JLL package) to extra libraries
|
|
# that they require from Nix.
|
|
# The libraries should be strings evaluated in a "with pkgs" context.
|
|
|
|
{
|
|
# Qt5Base_jll
|
|
# Needs access to dbus or you get "Cannot find libdbus-1 in your system"
|
|
# Repro: build environment with ["Plots"]
|
|
# > using Plots; plot(cos, 0, 2pi)
|
|
"ea2cea3b-5b76-57ae-a6ef-0a8af62496e1" = [ "dbus.lib" ];
|
|
|
|
# Qt6Base_jll
|
|
# Same reason as Qt5Base_jll
|
|
"c0090381-4147-56d7-9ebc-da0b1113ec56" = [ "dbus.lib" ];
|
|
}
|