mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-19 18:44:13 +00:00
weasis: init at 4.2.1
This commit is contained in:
parent
2148d8ab07
commit
5369d84405
80
pkgs/by-name/we/weasis/package.nix
Normal file
80
pkgs/by-name/we/weasis/package.nix
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchzip
|
||||||
|
, jre
|
||||||
|
, copyDesktopItems
|
||||||
|
, makeDesktopItem
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
throwSystem = throw "Unsupported system: ${stdenv.system}";
|
||||||
|
platform = {
|
||||||
|
"x86_64-linux" = "linux-x86-64";
|
||||||
|
}.${stdenv.system} or throwSystem;
|
||||||
|
|
||||||
|
in stdenv.mkDerivation rec {
|
||||||
|
pname = "weasis";
|
||||||
|
version = "4.2.1";
|
||||||
|
|
||||||
|
# Their build instructions indicate to use the packaging script
|
||||||
|
src = fetchzip {
|
||||||
|
url = "https://github.com/nroduit/Weasis/releases/download/v${version}/weasis-native.zip";
|
||||||
|
hash = "sha256-HDlylpe8cHZRaIXndfGh6XmUn8o2PQB1Av7hLCp679U=";
|
||||||
|
stripRoot = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
copyDesktopItems
|
||||||
|
];
|
||||||
|
|
||||||
|
desktopItems = [
|
||||||
|
(makeDesktopItem {
|
||||||
|
name = "DICOMizer";
|
||||||
|
exec = "Dicomizer";
|
||||||
|
icon = "Dicomizer";
|
||||||
|
desktopName = "DICOMizer";
|
||||||
|
comment = "Convert standard images into DICOM";
|
||||||
|
})
|
||||||
|
(makeDesktopItem {
|
||||||
|
name = "Weasis";
|
||||||
|
exec = "Weasis";
|
||||||
|
icon = "Weasis";
|
||||||
|
desktopName = "Weasis";
|
||||||
|
comment = meta.description;
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
patchShebangs ./build/script/package-weasis.sh
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
runHook preBuild
|
||||||
|
|
||||||
|
./build/script/package-weasis.sh --no-installer --jdk ${jre}
|
||||||
|
|
||||||
|
runHook postBuild
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
|
mkdir -p $out/share/{applications,pixmaps}
|
||||||
|
|
||||||
|
mv weasis-${platform}-jdk${lib.versions.major jre.version}-${version}/Weasis/* $out/
|
||||||
|
mv $out/lib/*.png $out/share/pixmaps/
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Multipurpose standalone and web-based DICOM viewer with a highly modular architecture";
|
||||||
|
homepage = "https://weasis.org";
|
||||||
|
# Using changelog from releases as it is more accurate
|
||||||
|
changelog = "https://github.com/nroduit/Weasis/releases/tag/v${version}";
|
||||||
|
license = with lib.licenses; [ asl20 epl20 ];
|
||||||
|
maintainers = [ lib.maintainers.wolfangaukang ];
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
mainProgram = "Weasis";
|
||||||
|
};
|
||||||
|
}
|
@ -41811,6 +41811,10 @@ with pkgs;
|
|||||||
|
|
||||||
nix-store-gcs-proxy = callPackage ../tools/nix/nix-store-gcs-proxy { };
|
nix-store-gcs-proxy = callPackage ../tools/nix/nix-store-gcs-proxy { };
|
||||||
|
|
||||||
|
weasis = callPackage ../by-name/we/weasis/package.nix {
|
||||||
|
jre = jdk21;
|
||||||
|
};
|
||||||
|
|
||||||
webwormhole = callPackage ../tools/networking/webwormhole { };
|
webwormhole = callPackage ../tools/networking/webwormhole { };
|
||||||
|
|
||||||
werf = callPackage ../applications/networking/cluster/werf { };
|
werf = callPackage ../applications/networking/cluster/werf { };
|
||||||
|
Loading…
Reference in New Issue
Block a user