diff --git a/pkgs/applications/graphics/drawing/default.nix b/pkgs/applications/graphics/drawing/default.nix index 546af551de9c..693c0b213b54 100644 --- a/pkgs/applications/graphics/drawing/default.nix +++ b/pkgs/applications/graphics/drawing/default.nix @@ -18,15 +18,15 @@ python3.pkgs.buildPythonApplication rec { pname = "drawing"; - version = "1.0.1"; + version = "1.0.2"; format = "other"; src = fetchFromGitHub { owner = "maoschanz"; repo = pname; - rev = version; - sha256 = "sha256-9nosriI3Kdf1M5/TYFWn1jtQTqNKhBcFh7q3E4Uoq4s="; + rev = "refs/tags/${version}"; + hash = "sha256-kNF9db8NoHWW1A0WEFQzxHqAQ4A7kxInMRZFJOXQX/k="; }; nativeBuildInputs = [ @@ -64,6 +64,7 @@ python3.pkgs.buildPythonApplication rec { meta = with lib; { description = "A free basic image editor, similar to Microsoft Paint, but aiming at the GNOME desktop"; homepage = "https://maoschanz.github.io/drawing/"; + changelog = "https://github.com/maoschanz/drawing/releases/tag/${version}"; maintainers = with maintainers; [ mothsart ]; license = licenses.gpl3Plus; platforms = platforms.linux;