nixpkgs-suyu/pkgs/applications/science/medicine/aliza/default.nix

55 lines
1.5 KiB
Nix
Raw Normal View History

2021-01-15 14:21:58 +01:00
{ lib, stdenv, fetchurl, rpmextract, makeWrapper, patchelf, qt4, zlib, libX11, libXt, libSM, libICE, libXext, libGLU, libGL }:
2017-06-03 16:33:52 +02:00
2021-01-15 14:21:58 +01:00
with lib;
2017-06-03 16:33:52 +02:00
stdenv.mkDerivation {
2019-05-21 11:31:38 +02:00
pname = "aliza";
2020-08-10 11:15:01 +02:00
version = "1.98.32";
2017-06-03 16:33:52 +02:00
src = fetchurl {
2019-05-21 11:31:38 +02:00
# See https://www.aliza-dicom-viewer.com/download
2020-08-10 11:15:01 +02:00
url = "https://drive.google.com/uc?export=download&id=1nggavPhY_633T-AW9PdkcAgbWtzv3QKG";
sha256 = "00vbgv8ca9ckgkicyyngrb01yhhcqc8hygg2bls7b44c47hcc8zz";
2017-06-03 16:33:52 +02:00
name = "aliza.rpm";
};
buildInputs = [ rpmextract makeWrapper ];
unpackCmd = "rpmextract $curSrc";
patchPhase = ''
sed -i 's/^Exec.*$/Exec=aliza %F/' share/applications/aliza.desktop
'';
installPhase = ''
mkdir -p $out
cp -r bin share $out
runHook postInstall
'';
postInstall = let
2021-01-15 14:21:58 +01:00
libs = lib.makeLibraryPath [ qt4 zlib stdenv.cc.cc libSM libICE libX11 libXext libXt libGLU libGL ];
2017-06-03 16:33:52 +02:00
in ''
${patchelf}/bin/patchelf \
--interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
$out/bin/aliza
${patchelf}/bin/patchelf \
--interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
$out/bin/aliza-vtkvol
wrapProgram $out/bin/aliza \
--prefix LD_LIBRARY_PATH : ${libs}
wrapProgram $out/bin/aliza-vtkvol \
--prefix LD_LIBRARY_PATH : ${libs}
'';
meta = {
description = "Medical imaging software with 2D, 3D and 4D capabilities";
homepage = "https://www.aliza-dicom-viewer.com";
2017-06-03 16:33:52 +02:00
license = licenses.unfreeRedistributable;
maintainers = with maintainers; [ mounium ];
2019-05-21 11:31:38 +02:00
platforms = platforms.linux;
2017-06-03 16:33:52 +02:00
};
}