depot/nix/pkgs/javaws-env.nix
Luke Granger-Brown 79c7b70a96 porcorosso: add javaws bin that drops into a FHS env.
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.
2020-05-06 10:01:46 +01:00

9 lines
165 B
Nix

{ pkgs, ... }:
pkgs.buildFHSUserEnv {
name = "javaws-env";
targetPkgs = pkgs: (with pkgs;
[
adoptopenjdk-icedtea-web
]);
runScript = "javaws";
}