Skip to content

Commit

Permalink
yed: 3.18.1.1 -> 3.18.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lukateras committed Dec 5, 2018
1 parent 9a75598 commit 851a529
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions pkgs/applications/graphics/yed/default.nix
@@ -1,16 +1,15 @@
{ stdenv, requireFile, makeWrapper, unzip, jre }:
{ stdenv, fetchzip, makeWrapper, unzip, jre }:

stdenv.mkDerivation rec {
name = "yEd-${version}";
version = "3.18.1.1";
version = "3.18.2";

src = requireFile {
name = "${name}.zip";
url = "https://www.yworks.com/en/products/yfiles/yed/";
sha256 = "0jl0c18jkmy21ka5xgki8dqq2v8cy63qvmx3x01wrhiplmczn97y";
src = fetchzip {
url = "https://www.yworks.com/resources/yed/demo/${name}.zip";
sha256 = "1csj19j9mfx4jfc949sz672h8lnfj217nn32d54cxj8llks82ycy";
};

nativeBuildInputs = [ unzip makeWrapper ];
nativeBuildInputs = [ makeWrapper unzip ];

installPhase = ''
mkdir -p $out/yed
Expand Down

0 comments on commit 851a529

Please sign in to comment.