mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
31 lines
853 B
Nix
31 lines
853 B
Nix
{ stdenv, fetchzip, makeWrapper, unzip, jre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "yEd";
|
|
version = "3.19.1.1";
|
|
|
|
src = fetchzip {
|
|
url = "https://www.yworks.com/resources/yed/demo/${pname}-${version}.zip";
|
|
sha256 = "0px88rc1slf7n1n8lpk56hf29ppbnnd4lrqfyggihcr0pxmw157c";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper unzip ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/yed
|
|
cp -r * $out/yed
|
|
mkdir -p $out/bin
|
|
|
|
makeWrapper ${jre}/bin/java $out/bin/yed \
|
|
--add-flags "-jar $out/yed/yed.jar --"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
license = licenses.unfree;
|
|
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 ];
|
|
};
|
|
}
|