mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
3a83109945
* aescrypt: change `${pname}` to string literal * bandwidth: change `${pname}` to string literal * bc: change `${pname}` to string literal * bdfresize: change `${pname}` to string literal * birdfont: change `${pname}` to string literal * brltty: change `${pname}` to string literal * calamares: change `${pname}` to string literal * ccal: change `${pname}` to string literal * clac: change `${pname}` to string literal * colord-gtk4: change `${pname}` to string literal * colord: change `${pname}` to string literal * colorless: change `${pname}` to string literal * cunit: change `${pname}` to string literal * datamash: change `${pname}` to string literal * dateutils: change `${pname}` to string literal * desktop-file-utils: change `${pname}` to string literal * digitemp: change `${pname}` to string literal * ding-libs: change `${pname}` to string literal * docbook2mdoc: change `${pname}` to string literal * dtach: change `${pname}` to string literal * empty: change `${pname}` to string literal * entr: change `${pname}` to string literal * envsubst: change `${pname}` to string literal * ethtool: change `${pname}` to string literal * fdtools: change `${pname}` to string literal * filebench: change `${pname}` to string literal * findutils: change `${pname}` to string literal * fortune: change `${pname}` to string literal * fpart: change `${pname}` to string literal * fxlinuxprintutil: change `${pname}` to string literal * gbdfed: change `${pname}` to string literal * getopt: change `${pname}` to string literal * github-copilot-cli: change `${pname}` to string literal * gparted: change `${pname}` to string literal * hddtemp: change `${pname}` to string literal * hdfview: change `${pname}` to string literal * hpcg: change `${pname}` to string literal * hpl: change `${pname}` to string literal * ink: change `${pname}` to string literal * ised: change `${pname}` to string literal * isoimagewriter: change `${pname}` to string literal * kronometer: change `${pname}` to string literal * libsForQt5.qt5ct: change `${pname}` to string literal * lilo: change `${pname}` to string literal * lockfileProgs: change `${pname}` to string literal * map-cmd: change `${pname}` to string literal * mcrypt: change `${pname}` to string literal * most: change `${pname}` to string literal * mrtg: change `${pname}` to string literal * ms-sys: change `${pname}` to string literal * multitime: change `${pname}` to string literal * nbench: change `${pname}` to string literal * osinfo-db-tools: change `${pname}` to string literal * parallel-full: change `${pname}` to string literal * phoronix-test-suite: change `${pname}` to string literal * pod2mdoc: change `${pname}` to string literal * powerline-rs: change `${pname}` to string literal * recoverjpeg: change `${pname}` to string literal * recutils: change `${pname}` to string literal * routino: change `${pname}` to string literal * rpm-ostree: change `${pname}` to string literal * screen: change `${pname}` to string literal * sharedown: change `${pname}` to string literal * statserial: change `${pname}` to string literal * taoup: change `${pname}` to string literal * texi2mdoc: change `${pname}` to string literal * tmpwatch: change `${pname}` to string literal * toilet: change `${pname}` to string literal * triehash: change `${pname}` to string literal * ttfautohint: change `${pname}` to string literal * txt2man: change `${pname}` to string literal * urjtag: change `${pname}` to string literal * uudeview: change `${pname}` to string literal * uutils-coreutils: change `${pname}` to string literal * vttest: change `${pname}` to string literal * wacomtablet: change `${pname}` to string literal * xcd: change `${pname}` to string literal * xdaliclock: change `${pname}` to string literal * xjobs: change `${pname}` to string literal * feishin: change `${pname}` to string literal * gifsicle: change `${pname}` to string literal * nzbhydra2: change `${pname}` to string literal * vatprism: change `${pname}` to string literal * webfs: change `${pname}` to string literal * yggstack: change `${pname}` to string literal
85 lines
2.5 KiB
Nix
85 lines
2.5 KiB
Nix
{ lib, stdenv, fetchurl, ant, jdk, hdf4, hdf5, makeDesktopItem, copyDesktopItems, strip-nondeterminism, stripJavaArchivesHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "hdfview";
|
|
version = "3.3.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://support.hdfgroup.org/ftp/HDF5/releases/HDF-JAVA/hdfview-${version}/src/hdfview-${version}.tar.gz";
|
|
sha256 = "sha256-WcGYceMOB8gCycJSW4KdApy2gIBgTnE/d0PxGZClUqg=";
|
|
};
|
|
|
|
patches = [
|
|
# Hardcode isUbuntu=false to avoid calling hostname to detect os
|
|
./0001-Hardcode-isUbuntu-false-to-avoid-hostname-dependency.patch
|
|
# Disable signing on macOS
|
|
./disable-mac-signing.patch
|
|
# Remove timestamp comment from generated versions.properties file
|
|
./remove-properties-timestamp.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
ant
|
|
jdk
|
|
copyDesktopItems
|
|
strip-nondeterminism
|
|
stripJavaArchivesHook
|
|
];
|
|
|
|
HDFLIBS = (hdf4.override { javaSupport = true; }).out;
|
|
HDF5LIBS = (hdf5.override { javaSupport = true; }).out;
|
|
|
|
buildPhase =
|
|
let
|
|
arch = if stdenv.isx86_64 then "x86_64" else "aarch64";
|
|
in
|
|
''
|
|
runHook preBuild
|
|
|
|
ant createJPackage -Dmachine.arch=${arch}
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
desktopItem = makeDesktopItem rec {
|
|
name = "HDFView";
|
|
desktopName = name;
|
|
exec = name;
|
|
icon = name;
|
|
comment = meta.description;
|
|
categories = [ "Science" "DataVisualization" ];
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
'' + lib.optionalString stdenv.isLinux ''
|
|
mkdir -p $out/bin $out/lib
|
|
cp -a build/dist/HDFView/bin/HDFView $out/bin/
|
|
cp -a build/dist/HDFView/lib/app $out/lib/
|
|
cp -a build/dist/HDFView/lib/libapplauncher.so $out/lib/
|
|
ln -s ${jdk}/lib/openjdk $out/lib/runtime
|
|
|
|
mkdir -p $out/share/applications $out/share/icons/hicolor/32x32/apps
|
|
cp src/HDFView.png $out/share/icons/hicolor/32x32/apps/
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
|
mkdir -p $out/Applications
|
|
cp -a build/dist/HDFView.app $out/Applications/
|
|
'' + ''
|
|
runHook postInstall
|
|
'';
|
|
|
|
preFixup = ''
|
|
# Remove build timestamp from javadoc files
|
|
find $out/lib/app{,/mods}/doc/javadocs -name "*.html" -exec strip-nondeterminism --type javadoc {} +
|
|
'';
|
|
|
|
meta = {
|
|
description = "A visual tool for browsing and editing HDF4 and HDF5 files";
|
|
license = lib.licenses.free; # BSD-like
|
|
homepage = "https://www.hdfgroup.org/downloads/hdfview";
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
|
maintainers = with lib.maintainers; [ jiegec ];
|
|
mainProgram = "HDFView";
|
|
};
|
|
}
|