From 9d136b7467bd2bde6338ab98cff8056499c7e83e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Thu, 27 Apr 2023 14:58:40 +0200 Subject: [PATCH 1/2] ldtk: 1.2.5 -> 1.3.0 --- pkgs/applications/editors/ldtk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/ldtk/default.nix b/pkgs/applications/editors/ldtk/default.nix index 3e6346f57e41..8d6ec620e5c4 100644 --- a/pkgs/applications/editors/ldtk/default.nix +++ b/pkgs/applications/editors/ldtk/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { pname = "ldtk"; - version = "1.2.5"; + version = "1.3.0"; src = fetchurl { url = "https://github.com/deepnight/ldtk/releases/download/v${version}/ubuntu-distribution.zip"; - sha256 = "sha256-kx4GOENYYbS09HxAiCCvqm/ztc32sdB39W8uv6D+R+A="; + hash = "sha256-2gGxl6l7J/L0CfMJk6PVmc1ABQISzAnjKDJgnMyx2PM="; }; nativeBuildInputs = [ unzip makeWrapper copyDesktopItems appimage-run ]; From ebb1fb926ae4db2c07cd3329e8715affa39411b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Thu, 27 Apr 2023 15:03:22 +0200 Subject: [PATCH 2/2] ldtk: add meta.changelog --- pkgs/applications/editors/ldtk/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/editors/ldtk/default.nix b/pkgs/applications/editors/ldtk/default.nix index 8d6ec620e5c4..ef21add4b32e 100644 --- a/pkgs/applications/editors/ldtk/default.nix +++ b/pkgs/applications/editors/ldtk/default.nix @@ -48,8 +48,9 @@ stdenv.mkDerivation rec { ]; meta = with lib; { - homepage = "https://ldtk.io/"; description = "Modern, lightweight and efficient 2D level editor"; + homepage = "https://ldtk.io/"; + changelog = "https://github.com/deepnight/ldtk/releases/tag/v${version}"; license = licenses.mit; platforms = [ "x86_64-linux" ]; maintainers = with maintainers; [ felschr ];