aaaaaaaaaaaaaaaaaaaaaa

This commit is contained in:
Oystein Kristoffer Tveit 2022-11-06 01:46:26 +01:00
commit 69ee6ca858
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
2 changed files with 94 additions and 0 deletions

30
flake.nix Normal file
View File

@ -0,0 +1,30 @@
{
# 1.5.2 - 2015-04-13
# inputs.nixpkgs.url = "https://github.com/NixOS/nixpkgs/archive/df31a338dcfbbc1561905eb02224912c82a92fc7.tar.gz";
# 1.6 - 2015-08-31
# inputs.nixpkgs.url = "https://github.com/NixOS/nixpkgs/archive/00abee22bee06fdb57ee67cc514ab387deb186c9.tar.gz";
# 1.6.1 - 2016-02-08
inputs.nixpkgs.url = "https://github.com/NixOS/nixpkgs/archive/dd7e6bd97fc26b72fb6ac9e9d6f9750980fd3f56.tar.gz";
# 1.6.2 - 2018-03-12
# inputs.nixpkgs.url = "https://github.com/NixOS/nixpkgs/archive/2c9d2d65266c2c3aca1e4c80215de8bee5295b04.tar.gz";
# 1.7.1 - 2019-06-24
# inputs.nixpkgs.url = "https://github.com/NixOS/nixpkgs/archive/4599f2bb9a5a6b1482e72521ead95cb24e0aa819.tar.gz";
outputs = { self, nixpkgs }: let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
packages.${system} = rec {
icedtea-web = pkgs.icedtea8_web;
default = icedtea-web;
};
devShells.${system}.default = pkgs.mkShell {
packages = with self.packages.${system}; [ icedtea-web ];
};
};
}

64
viewer.jnlp Normal file
View File

@ -0,0 +1,64 @@
<?xml version="1.0" encoding="UTF-8"?>
<jnlp codebase="https://localhost:4443" spec="1.0+">
<information>
<title>iDRAC6 Virtual Console Client</title>
<vendor>Dell Inc.</vendor>
<icon href="https://localhost:4443/images/logo.gif" kind="splash"/>
<shortcut online="true"/>
</information>
<application-desc main-class="com.avocent.idrac.kvm.Main">
<argument>ip=localhost</argument>
<argument>vmprivilege=true</argument>
<argument>helpurl=https://localhost:4443/help/contents.html</argument>
<argument>title=idrac-73W805J%2C+PowerEdge+R710%2C+User%3Aroot</argument>
<argument>user=1804289383</argument>
<argument>passwd=846930886</argument>
<argument>kmport=5900</argument>
<argument>vport=5900</argument>
<argument>apcp=1</argument>
<argument>version=2</argument>
</application-desc>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.6+"/>
<jar href="https://localhost:4443/software/avctKVM.jar" download="eager" main="true" />
</resources>
<resources os="Windows" arch="x86">
<nativelib href="https://localhost:4443/software/avctKVMIOWin32.jar" download="eager"/>
<nativelib href="https://localhost:4443/software/avctVMWin32.jar" download="eager"/>
</resources>
<resources os="Windows" arch="amd64">
<nativelib href="https://localhost:4443/software/avctKVMIOWin64.jar" download="eager"/>
<nativelib href="https://localhost:4443/software/avctVMWin64.jar" download="eager"/>
</resources>
<resources os="Windows" arch="x86_64">
<nativelib href="https://localhost:4443/software/avctKVMIOWin64.jar" download="eager"/>
<nativelib href="https://localhost:4443/software/avctVMWin64.jar" download="eager"/>
</resources>
<resources os="Linux" arch="x86">
<nativelib href="https://localhost:4443/software/avctKVMIOLinux32.jar" download="eager"/>
<nativelib href="https://localhost:4443/software/avctVMLinux32.jar" download="eager"/>
</resources>
<resources os="Linux" arch="i386">
<nativelib href="https://localhost:4443/software/avctKVMIOLinux32.jar" download="eager"/>
<nativelib href="https://localhost:4443/software/avctVMLinux32.jar" download="eager"/>
</resources>
<resources os="Linux" arch="i586">
<nativelib href="https://localhost:4443/software/avctKVMIOLinux32.jar" download="eager"/>
<nativelib href="https://localhost:4443/software/avctVMLinux32.jar" download="eager"/>
</resources>
<resources os="Linux" arch="i686">
<nativelib href="https://localhost:4443/software/avctKVMIOLinux32.jar" download="eager"/>
<nativelib href="https://localhost:4443/software/avctVMLinux32.jar" download="eager"/>
</resources>
<resources os="Linux" arch="amd64">
<nativelib href="https://localhost:4443/software/avctKVMIOLinux64.jar" download="eager"/>
<nativelib href="https://localhost:4443/software/avctVMLinux64.jar" download="eager"/>
</resources>
<resources os="Linux" arch="x86_64">
<nativelib href="https://localhost:4443/software/avctKVMIOLinux64.jar" download="eager"/>
<nativelib href="https://localhost:4443/software/avctVMLinux64.jar" download="eager"/>
</resources>
</jnlp>