mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
84 lines
2.5 KiB
Nix
84 lines
2.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, ant
|
|
# executable fails to start for jdk > 17
|
|
, jdk17
|
|
, makeWrapper
|
|
, strip-nondeterminism
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "dataexplorer";
|
|
version = "3.9.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/dataexplorer/dataexplorer-${finalAttrs.version}-src.tar.gz";
|
|
hash = "sha256-MQAnLCkcs3r8/2j4zYaMC/JM8nBCEvqHKk8lv+7b9KE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
ant
|
|
jdk17
|
|
makeWrapper
|
|
strip-nondeterminism
|
|
];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
ant -f build/build.xml dist
|
|
runHook postBuild
|
|
'';
|
|
|
|
doCheck = false;
|
|
# Missing dependencies (e.g. junit). Does not work.
|
|
#checkPhase = ''
|
|
# ant -f build/build.xml check
|
|
#'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
ant -Dprefix=$out/share/ -f build/build.xml install
|
|
|
|
# The sources contain a wrapper script in $out/share/DataExplorer/DataExplorer
|
|
# but it hardcodes bash shebang and does not pin the java path.
|
|
# So we create our own wrapper, using similar cmdline args as upstream.
|
|
mkdir -p $out/bin
|
|
makeWrapper ${jdk17}/bin/java $out/bin/DataExplorer \
|
|
--add-flags "-Xms64m -Xmx3092m -jar $out/share/DataExplorer/DataExplorer.jar" \
|
|
--set SWT_GTK3 0
|
|
|
|
makeWrapper ${jdk17}/bin/java $out/bin/DevicePropertiesEditor \
|
|
--add-flags "-Xms32m -Xmx512m -classpath $out/share/DataExplorer/DataExplorer.jar gde.ui.dialog.edit.DevicePropertiesEditor" \
|
|
--set SWT_GTK3 0 \
|
|
--set LIBOVERLAY_SCROLLBAR 0
|
|
|
|
install -Dvm644 build/misc/GNU_LINUX_JUNSI_ICHARER_USB_UDEV_RULE/50-Junsi-iCharger-USB.rules \
|
|
$out/etc/udev/rules.d/50-Junsi-iCharger-USB.rules
|
|
install -Dvm644 build/misc/GNU_LINUX_SKYRC_UDEV_RULE/50-SkyRC-Charger.rules \
|
|
$out/etc/udev/rules.d/50-SkyRC-Charger.rules
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
# manually call strip-nondeterminism because using stripJavaArchivesHook takes
|
|
# too long to strip bundled jars
|
|
postFixup = ''
|
|
strip-nondeterminism --type jar $out/share/DataExplorer/{DataExplorer.jar,devices/*.jar}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Graphical tool to analyze data, gathered from various hardware devices";
|
|
homepage = "https://www.nongnu.org/dataexplorer/index.html";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ panicgh ];
|
|
platforms = [ "x86_64-linux" ];
|
|
sourceProvenance = with sourceTypes; [
|
|
fromSource
|
|
binaryNativeCode # contains RXTXcomm (JNI library with *.so files)
|
|
binaryBytecode # contains thirdparty jar files, e.g. javax.json, org.glassfish.json
|
|
];
|
|
};
|
|
})
|