3b6bc4b69c
these are the easily identifiable cases and will not be comprehensive
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ lib, stdenv, fetchzip, makeWrapper, unzip, jre, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "yEd";
|
|
version = "3.22";
|
|
|
|
src = fetchzip {
|
|
url = "https://www.yworks.com/resources/yed/demo/${pname}-${version}.zip";
|
|
sha256 = "sha256-GHYdvWie2k9YarS9DaA4bExswV3UQ26O8+7K/6yvtac=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper unzip wrapGAppsHook ];
|
|
# For wrapGAppsHook setup hook
|
|
buildInputs = [ (jre.gtk3 or null) ];
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
|
|
preFixup = ''
|
|
mkdir -p $out/yed
|
|
cp -r * $out/yed
|
|
mkdir -p $out/bin
|
|
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
makeWrapper ${jre}/bin/java $out/bin/yed \
|
|
''${makeWrapperArgs[@]} \
|
|
--add-flags "-jar $out/yed/yed.jar --"
|
|
'';
|
|
dontWrapGApps = true;
|
|
|
|
meta = with lib; {
|
|
license = licenses.unfree;
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
homepage = "https://www.yworks.com/products/yed";
|
|
description = "A powerful desktop application that can be used to quickly and effectively generate high-quality diagrams";
|
|
platforms = jre.meta.platforms;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|