我正试图从nixos运行这个groovy脚本
#!/usr/bin/env groovy
@Grapes(
@Grab(group='net.java.dev.jna', module='jna-platform', version='4.5.0')
)
import com.sun.jna.platform.unix.X11
def display = X11.INSTANCE.XOpenDisplay(null)
if(display == null) {
throw new IllegalStateException('Can\'t open default display')
}
def root = X11.INSTANCE.XRootWindow(display, X11.INSTANCE.XDefaultScreen(display))
if(root == null) {
throw new IllegalStateException('Can\'t find root window')
}
if(display != null) {
X11.INSTANCE.XCloseDisplay(display)
}
这导致以下异常
Caught: java.lang.UnsatisfiedLinkError: Unable to load library 'X11': Native library (linux-x86-64/libX11.so) not found in resource path ([file:/etc/user/john/.groovy/grapes/net.java.dev.jna/jna-platform/jars/jna-platform-4.5.0.jar, file:/etc/user/john/.groovy/grapes/net.java.dev.jna/jna/jars/jna-4.5.0.jar]) java.lang.UnsatisfiedLinkError: Unable to load library 'X11': Native library (linux-x86-64/libX11.so) not found in resource path ([file:/etc/user/john/.groovy/grapes/net.java.dev.jna/jna-platform/jars/jna-platform-4.5.0.jar, file:/etc/user/john/.groovy/grapes/net.java.dev.jna/jna/jars/jna-4.5.0.jar])
at com.sun.jna.NativeLibrary.loadLibrary(NativeLibrary.java:303)
at com.sun.jna.NativeLibrary.getInstance(NativeLibrary.java:427)
at com.sun.jna.Library$Handler.<init>(Library.java:179)
at com.sun.jna.Native.loadLibrary(Native.java:569)
at com.sun.jna.Native.loadLibrary(Native.java:544)
at com.sun.jna.platform.unix.X11.<clinit>(X11.java:417)
at helloX11.run(helloX11:10)
如何在nixos上设置jvm以正确指向libX11.so?
对于应该使用X11配置的JVM,也会发生这种情况。似乎本地库不通过CLASSPATH
传播。这可能应该在NixPkgs中修复。同时,您可以使用以下命令使用nix-shell
创建本机包。
nix-shell -E 'with import <nixpkgs> { }; runCommand "dummy" { buildInputs = [ groovy ]; shellHook = "export CLASSPATH=${xlibs.libX11.out}/lib"; } ""' --run ./x11script.groovy
(nix-shell -E
使用来自runCommand
调用生成的虚拟派生的属性)
如果它是您的选项,您可以将虚拟派生放在名为deps.nix
的文件中,并更改脚本的hashbang和第一行。
with import <nixpkgs> { };
runCommand "dummy" {
buildInputs = [ groovy ];
shellHook = "export CLASSPATH=${xlibs.libX11.out}/lib";
} ""
你的脚本的顶部:
#!/usr/bin/env nix-shell
/*
#!nix-shell -i groovy
#!nix-shell deps.nix
*/
现在,您可以在不在命令行上手动调用nix-shell
的情况下调用脚本。
在我看来,使用NixPkgs的安装钩子机制可能有更好的解决方案,但遗憾的是,我现在无法帮助你。