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-03-29 01:56:42 +00:00
name = "yEd-3.14.1";
2014-11-26 21:15:12 +00:00
src = fetchurl {
url = "http://www.yworks.com/products/yed/demo/${name}.zip";
2015-03-29 01:56:42 +00:00
sha256 = "09zik3pjs5x0vc0jvndm762blk85y44lxac3vdfqqbinwd9gfnm2";
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
};
}