nixpkgs/pkgs/applications/graphics/yed/default.nix

30 lines
844 B
Nix
Raw Normal View History

2014-11-26 21:15:12 +00:00
{ stdenv, fetchurl, makeWrapper, unzip, jre }:
stdenv.mkDerivation rec {
2015-05-12 12:45:05 +00:00
name = "yEd-3.14.2";
2014-11-26 21:15:12 +00:00
src = fetchurl {
url = "http://www.yworks.com/products/yed/demo/${name}.zip";
2015-08-22 08:36:41 +00:00
sha256 = "0i39n8h97v688r0nydcm0wj1ins2v83xjgykr7czpnmp600cq9cy";
2014-11-26 21:15:12 +00:00
};
nativeBuildInputs = [ unzip makeWrapper ];
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.unfreeRedistributable;
homepage = http://www.yworks.com/en/products/yfiles/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 ];
2014-11-26 21:15:12 +00:00
};
}