!aRKdLCkUeIFjRPZuJT:nixos.org

NixOS JVM

110 Members
24 Servers

Load older messages


SenderMessageTime
6 Dec 2024
@chayleaf:matrix.pavluk.orgchayleafif that doesn't work out, it might be beneficial to try to reproduce it outside of the nix sandbox09:33:14
@glepage:matrix.orgGaétan Lepage same with enableParallelBuilding = false unfortunately :/
I will try to bisect the change to have a better idea. Thanks for your help :)
09:38:56
@fliegendewurst:matrix.orgFliegendeWurst (@GPN23)How can I fix gradle packages where the build fails on everything not x86_64-linux? https://github.com/NixOS/nixpkgs/pull/35316511:33:14
@fliegendewurst:matrix.orgFliegendeWurst (@GPN23)

The error is:

* What went wrong:
A problem occurred evaluating root project 'keyboard-layout-editor'.
> Could not resolve all files for configuration ':runtimeClasspath'.
   > Could not find javafx-fxml-17-mac-aarch64.jar (org.openjfx:javafx-fxml:17).
     Searched in the following locations:
         https://repo.maven.apache.org/maven2/org/openjfx/javafx-fxml/17/javafx-fxml-17-mac-aarch64.jar
   > Could not find javafx-controls-17-mac-aarch64.jar (org.openjfx:javafx-controls:17).
     Searched in the following locations:
         https://repo.maven.apache.org/maven2/org/openjfx/javafx-controls/17/javafx-controls-17-mac-aarch64.jar
   > Could not find javafx-graphics-17-mac-aarch64.jar (org.openjfx:javafx-graphics:17).
     Searched in the following locations:
         https://repo.maven.apache.org/maven2/org/openjfx/javafx-graphics/17/javafx-graphics-17-mac-aarch64.jar
   > Could not find javafx-base-17-mac-aarch64.jar (org.openjfx:javafx-base:17).
     Searched in the following locations:
         https://repo.maven.apache.org/maven2/org/openjfx/javafx-base/17/javafx-base-17-mac-aarch64.jar
11:33:48
@fliegendewurst:matrix.orgFliegendeWurst (@GPN23)I suppose the deps.json would need to be combined from all platforms, in some way?11:34:59
@tomodachi94:matrix.orgTomodachi94 (they/them)
In reply to@fliegendewurst:matrix.org
I suppose the deps.json would need to be combined from all platforms, in some way?
Bingo. Alternatively, some people patch out these platform-dependent dependencies
15:49:22
@fliegendewurst:matrix.orgFliegendeWurst (@GPN23)
In reply to @tomodachi94:matrix.org
Bingo. Alternatively, some people patch out these platform-dependent dependencies
Well, the dependency is openjfx. I can't just patch that out. Maybe I can get all the deps.json files via the community builder..
19:41:16
@tomodachi94:matrix.orgTomodachi94 (they/them)We do have an OpenJFX package, you might be able to patch it to use that? I can't find any other instances of packages doing that (but maybe they should): https://github.com/search?q=repo%3ANixOS%2Fnixpkgs%20Gradle%20OpenJFX&type=code19:44:23
8 Dec 2024
@tomodachi94:matrix.orgTomodachi94 (they/them)Can we (and should we) override vendored dependencies that are packaged from source locally?05:23:06
@chayleaf:matrix.pavluk.orgchayleafwe certainly can, but the current approach is just setting LD_LIBRARY_PATH07:19:06
@chayleaf:matrix.pavluk.orgchayleaftheres a looot of jar dependencies most of which can be built from source07:19:44
@chayleaf:matrix.pavluk.orgchayleafi guess you could make an argument for building the ones with native code from source, but it's gonna require looots of effort07:20:11
@chayleaf:matrix.pavluk.orgchayleafanyway, thete are some examples in-tree of gradle packages fetching deps for multiple platforms07:21:07
@chayleaf:matrix.pavluk.orgchayleafusually it involves running gradle multiple times with different args or env vars07:21:26
@chayleaf:matrix.pavluk.orgchayleafworst case you can write a grep+sed mess to extract urls from the source files and then download them with curl07:22:37
@chayleaf:matrix.pavluk.orgchayleaf* worst case you can write a grep+sed mess to extract urls from the source files and then fetch them with curl so they end up in the cache07:23:13
@tomodachi94:matrix.orgTomodachi94 (they/them)protobuf-java is... a massive headache. Bazel keeps trying to download protobuf-rust things (but I'm not trying to build the Rust stuff??)22:10:57
@tomodachi94:matrix.orgTomodachi94 (they/them)* protobuf-java from source is... a massive headache. Bazel keeps trying to download protobuf-rust things (but I'm not trying to build the Rust stuff??)22:11:05
@glepage:matrix.orgGaétan Lepage
In reply to @tomodachi94:matrix.org
protobuf-java from source is... a massive headache. Bazel keeps trying to download protobuf-rust things (but I'm not trying to build the Rust stuff??)

Haha bazel bazel bazel... We have (almost) given up building some packages from source due to bazel becoming more and more annoying:

  • python3Packages.protobuf
  • python3Packages.tensorflow
  • python3Packages.jaxlib
22:15:31
@tomodachi94:matrix.orgTomodachi94 (they/them)Bazel is just... so cursed, though I imagine part of my problem is that I don't have the mental model of how Bazel works22:17:03
@tomodachi94:matrix.orgTomodachi94 (they/them)
Bazel is just... so cursed
Source: one package completely replaces the root BUILD.bazel
22:17:34
@tomodachi94:matrix.orgTomodachi94 (they/them)
Bazel is just... so cursed
Source: one package completely replaces the root BUILD.bazel entirely
22:17:47
@tomodachi94:matrix.orgTomodachi94 (they/them)
In reply to@tomodachi94:matrix.org
Bazel is just... so cursed
Source: one package completely replaces the root BUILD.bazel entirely
(it's envoy if you're curious)
22:21:43
@tomodachi94:matrix.orgTomodachi94 (they/them)
In reply to@glepage:matrix.org

Haha bazel bazel bazel... We have (almost) given up building some packages from source due to bazel becoming more and more annoying:

  • python3Packages.protobuf
  • python3Packages.tensorflow
  • python3Packages.jaxlib
I'll take a look at a few of these.... I can't find any from-source Java packages that use Bazel, probably for good reasons
22:22:18
@tomodachi94:matrix.orgTomodachi94 (they/them)* I'll take a look at a few of these.... I can't find any from-source Java packages that use Bazel, probably for good reasons 🙃22:22:29
@tomodachi94:matrix.orgTomodachi94 (they/them)buildBazelPackage is also undocumented, I'm going to file an issue about that22:24:17
@tomodachi94:matrix.orgTomodachi94 (they/them)Oh there is one already... from 2022: https://github.com/NixOS/nixpkgs/issues/15739822:28:45
@tomodachi94:matrix.orgTomodachi94 (they/them)Taking a stab at documenting Bazel so I can understand it a little better22:51:32
@tomodachi94:matrix.orgTomodachi94 (they/them)* Taking a stab at documenting buildBazelPackage so I can understand it a little better22:51:41
@tomodachi94:matrix.orgTomodachi94 (they/them)(It would be nice to migrate some of these builders to hooks, but that would take a long time)22:58:18

Show newer messages


Back to Room ListRoom Version: 6