Merge pull request #44148 from Ekleog/javacard-devkit
javacard-devkit: init at 2.2.2
This commit is contained in:
commit
ec14b03b86
67
pkgs/development/compilers/javacard-devkit/default.nix
Normal file
67
pkgs/development/compilers/javacard-devkit/default.nix
Normal file
@ -0,0 +1,67 @@
|
||||
{ stdenv, requireFile, unzip, makeWrapper, oraclejdk8, autoPatchelfHook
|
||||
, pcsclite
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "javacard-devkit";
|
||||
version = "2.2.2";
|
||||
uscoreVersion = builtins.replaceStrings ["."] ["_"] version;
|
||||
|
||||
src = requireFile {
|
||||
name = "java_card_kit-${uscoreVersion}-linux.zip";
|
||||
url = "http://www.oracle.com/technetwork/java/javasebusiness/downloads/"
|
||||
+ "java-archive-downloads-javame-419430.html#java_card_kit-2.2.2-oth-JPR";
|
||||
sha256 = "1rzkw8izqq73ifvyp937wnjjc40a40drc4zsm0l1s6jyv3d7agb2";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ unzip oraclejdk8 makeWrapper autoPatchelfHook ];
|
||||
buildInputs = [ pcsclite ];
|
||||
|
||||
zipPrefix = "java_card_kit-${uscoreVersion}";
|
||||
|
||||
sourceRoot = ".";
|
||||
unpackCmd = ''
|
||||
unzip -p "$curSrc" "$zipPrefix/$zipPrefix-rr-bin-linux-do.zip" | jar x
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p "$out/share/$pname"
|
||||
cp -rt "$out/share/$pname" api_export_files
|
||||
cp -rt "$out" lib
|
||||
|
||||
for i in bin/*; do
|
||||
case "$i" in
|
||||
*.so) install -vD "$i" "$out/libexec/$pname/$(basename "$i")";;
|
||||
*) target="$out/bin/$(basename "$i")"
|
||||
install -vD "$i" "$target"
|
||||
wrapProgram "$target" \
|
||||
--set JAVA_HOME "$JAVA_HOME" \
|
||||
--prefix CLASSPATH : "$out/share/$pname/api_export_files"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
makeWrapper "$JAVA_HOME/bin/javac" "$out/bin/javacardc" \
|
||||
--prefix CLASSPATH : "$out/lib/api.jar"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Official development kit by Oracle for programming for the Java Card platform";
|
||||
longDescription = ''
|
||||
This Java Card SDK is the official SDK made available by Oracle for programming for the Java Card platform.
|
||||
|
||||
Instructions for usage:
|
||||
|
||||
First, compile your '.java' (NixOS-specific: you should not need to set the class path -- if you need, it's a bug):
|
||||
javacardc -source 1.5 -target 1.5 [MyJavaFile].java
|
||||
Then, convert the '.class' file into a '.cap':
|
||||
converter -applet [AppletAID] [MyApplet] [myPackage] [PackageAID] [Version]
|
||||
For more details, please refer to the documentation by Oracle
|
||||
'';
|
||||
homepage = http://www.oracle.com/technetwork/java/embedded/javacard/overview/index.html;
|
||||
license = stdenv.lib.licenses.unfree;
|
||||
maintainers = [ stdenv.lib.maintainers.ekleog ];
|
||||
platforms = [ "i686-linux" "x86_64-linux" ];
|
||||
};
|
||||
}
|
@ -6838,6 +6838,8 @@ with pkgs;
|
||||
oraclejdk10distro = packageType: _:
|
||||
(callPackage ../development/compilers/oraclejdk/jdk10-linux.nix { inherit packageType; });
|
||||
|
||||
javacard-devkit = pkgsi686Linux.callPackage ../development/compilers/javacard-devkit { };
|
||||
|
||||
jikes = callPackage ../development/compilers/jikes { };
|
||||
|
||||
julia = callPackage ../development/compilers/julia {
|
||||
|
Loading…
Reference in New Issue
Block a user