Skip to content

Commit 851a529

Browse files
authoredDec 5, 2018
yed: 3.18.1.1 -> 3.18.2
1 parent 9a75598 commit 851a529

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed
 

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

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
{ stdenv, requireFile, makeWrapper, unzip, jre }:
1+
{ stdenv, fetchzip, makeWrapper, unzip, jre }:
22

33
stdenv.mkDerivation rec {
44
name = "yEd-${version}";
5-
version = "3.18.1.1";
5+
version = "3.18.2";
66

7-
src = requireFile {
8-
name = "${name}.zip";
9-
url = "https://www.yworks.com/en/products/yfiles/yed/";
10-
sha256 = "0jl0c18jkmy21ka5xgki8dqq2v8cy63qvmx3x01wrhiplmczn97y";
7+
src = fetchzip {
8+
url = "https://www.yworks.com/resources/yed/demo/${name}.zip";
9+
sha256 = "1csj19j9mfx4jfc949sz672h8lnfj217nn32d54cxj8llks82ycy";
1110
};
1211

13-
nativeBuildInputs = [ unzip makeWrapper ];
12+
nativeBuildInputs = [ makeWrapper unzip ];
1413

1514
installPhase = ''
1615
mkdir -p $out/yed

0 commit comments

Comments
 (0)
Please sign in to comment.