Unverified Commit 1b23f74b authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

yed: 3.25 -> 3.25.1 (#441971)

parents 804e182b d4af1402
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
@@ -8,14 +8,15 @@
  wrapGAppsHook3,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation {
  pname = "yEd";
  version = "3.25";
  version = "3.25.1";

  # nixpkgs-update: no auto update
  src = fetchzip {
    # to update: archive https://www.yworks.com/resources/yed/demo/yEd-${version}.zip
    url = "https://web.archive.org/web/20250212125159/https://www.yworks.com/resources/yed/demo/yEd-${version}.zip";
    sha256 = "sha256-6Z24XmFPK+aomO7hImN4AdN08kjOsyn9PvHToyQj8sk=";
    url = "https://web.archive.org/web/20250322075239/https://www.yworks.com/resources/yed/demo/yEd-3.25.1.zip";
    sha256 = "sha256-CDciM2IW+nocbFMVmTXMWh2eYcDAMZ+lxsg/Rb7KRgo=";
  };

  nativeBuildInputs = [
@@ -42,9 +43,9 @@ stdenv.mkDerivation rec {
  '';
  dontWrapGApps = true;

  meta = with lib; {
    license = licenses.unfree;
    sourceProvenance = with sourceTypes; [ binaryBytecode ];
  meta = {
    license = lib.licenses.unfree;
    sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
    homepage = "https://www.yworks.com/products/yed";
    description = "Powerful desktop application that can be used to quickly and effectively generate high-quality diagrams";
    platforms = jre.meta.platforms;