1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 19:45:54 +00:00
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 13:45:05 +01: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 09:36:41 +01: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
};
}