Luke Granger-Brown
79c7b70a96
This allows me to use Supermicro's BMC, which appears to drop a stunnel binary into /tmp and then execute it, which doesn't work properly in Nix because nothing is where it is expected to be.
9 lines
165 B
Nix
9 lines
165 B
Nix
{ pkgs, ... }:
|
|
pkgs.buildFHSUserEnv {
|
|
name = "javaws-env";
|
|
targetPkgs = pkgs: (with pkgs;
|
|
[
|
|
adoptopenjdk-icedtea-web
|
|
]);
|
|
runScript = "javaws";
|
|
}
|